Re: FTP via Maven?

2006-07-09 Thread Napoleon Esmundo Ramirez
Hello, You could manually fetch those jars from ftp and install it in your local repo (http://maven.apache.org/guides/mini/guide-3rd-party-jars-local.html) or deploy it in an internal repo ( http://maven.apache.org/guides/mini/guide-3rd-party-jars-remote.html), so you could normally declare those

Re: Execute ant task in order

2006-07-09 Thread Ty Cuz
Yes, it works now by changing the lifecycle phase, it was at process-resources before. Thanks for the help! Ty On 7/10/06, Tim Kettler <[EMAIL PROTECTED]> wrote: Hi, I assume you use the antrun-plugin to execute the ant task? If yes, just bind it to a lifecycle phase after the 'compile' pha

Re: Execute ant task in order

2006-07-09 Thread Tim Kettler
Hi, I assume you use the antrun-plugin to execute the ant task? If yes, just bind it to a lifecycle phase after the 'compile' phase. 'process-classes' for example. As a sidenode. The native-maven-plugin [1] can create the header files and build a library from them (See [2] for an example for

Re: Maven findbugs Settings

2006-07-09 Thread Janhavi Phirke
To get the plugin into ur local repository, first you have to run the command "mvn install" and then "mvn findbugs:findbugs"...did u do this? if not, try this... On 7/7/06, tulasi <[EMAIL PROTECTED]> wrote: Dear friend ... its failing... [WARNING] *** CHECKSUM FAILED - Error retrieving chec

Execute ant task in order

2006-07-09 Thread Ty Cuz
Hi I am trying to run ant task with maven2. The ant task is to generate native header by executing javah, thus it requires the class file. The problem is the ant task was executing first before the java sources compiled into class file, so I got the error of class could not be found when executi

RE: maven-scm-plugin goals question

2006-07-09 Thread Sharma, Jaikumar
Thanks. Well, this was a advice, and of course, this can always be implmented / wrapped in another goal (like I have also wrapped this in validate goal). Thanks. Jaikumar -Original Message- From: Eric Redmond [mailto:[EMAIL PROTECTED] Sent: Saturday, July 08, 2006 9:32 AM To: Maven User

mvn deploy

2006-07-09 Thread Matthias Wessendorf
Hey, I am getting this error [INFO] Error deploying artifact: Error executing command for transfer Exit code 1 - 'ssh' is not recognized as an internal or external command, operable program or batch file. when trying "mvn deploy" on windoze my settings.xml contains: ... apache-m

[m1][ANN] FindBugs Plug-in 1.3 release

2006-07-09 Thread Jeff Jensen
We are pleased to announce the FindBugs Plug-in 1.3 release! http://maven-plugins.sourceforge.net/maven-findbugs-plugin A plugin to automate FindBugs tasks === Changes in this version include: New Features: o Add

Fwd: Maven 2 - central repo mirrors

2006-07-09 Thread Brett Porter
-- Forwarded message -- From: Wendy Smoak <[EMAIL PROTECTED]> Date: 10-Jul-2006 10:54 Subject: Maven 2 - central repo mirrors To: Struts Developers List Just a public service announcement since the central repo at ibiblio seems to be down. You can configure a mirror in settings

Re: Maven Download Stats on Google Homepage

2006-07-09 Thread Graham Lea
The stats are read from http://www.ibiblio.org/stats/ That of course means they don't include downloads from mirrors. (I'm assuming Maven supports mirrors?) Carlos Sanchez wrote: I know. My question is where does that script gets the stats from --

Maven classpth JARs

2006-07-09 Thread Julio Faerman
Hi, My application scans the jars and directories in the classpath in search of configuration files and other information. Thou, as maven uses ClassWorlds, the dependency jars are not in the system classpath when running tests, making them fail. Inside eclipse, they pass normally. Is there a w

Re: Eclipse Plugin

2006-07-09 Thread Stephen Duncan
http://maven.apache.org/plugins/maven-eclipse-plugin/eclipse-mojo.html You can set additionalProjectnatures, or projectnatures - Stephen On 7/9/06, Markus Wolf <[EMAIL PROTECTED]> wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi, is there a way to add specific eclipse project natures

Eclipse Plugin

2006-07-09 Thread Markus Wolf
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi, is there a way to add specific eclipse project natures to the generated .project file using the maven-eclipse-plugin (like spring nature or new dali persistence nature)? In maven 1.x there where some properties in the build.properties to set with

Re: Custom artifact resolving

2006-07-09 Thread Tim Kettler
Never mind. Figured it out myself. Tim Kettler schrieb: Hi, a plugin I'm writing depends on an artifact that is not part of the projects dependencies nor should it be on the plugins classpath. So defining it as a dependency under or isn't an option. I decided that the artifact is specifie

Re: WEB-INF/lib excludes once more

2006-07-09 Thread Markus Wolf
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 > the exclude paramater of the war plugin is only meant for the webapp > sources, > the parameter name is a little bit vague. =) > I think the docs are loo vague about excluding something and as well adding something to the manifest classpath. > if y

using maven idea:idea command with servicemix

2006-07-09 Thread Michael Clovis
I am trying to set up a working environment for testing and development for using IDE(s), eclipse and Intellij for servicemix. We did a svn co from apache site and followed command line build instructions. Then ran mvn idea:idea. This generated project files whereever pom files existed. That being

Build time classpath using my java plugin

2006-07-09 Thread TimHedger
I've written a plugin (in Java) that explicitly invokes the main method of a Java class directly from within the jvm that maven is already running. My plugin is behaving/configured as I expect, but I have a classpath problem when control switches from my plugin code to the main method of the Java

Re: WEB-INF/lib excludes once more

2006-07-09 Thread Pete Marvin King
sorry my mistake, SCOPE_RUNTIME = systemScope = false; providedScope = false; compileScope = true; runtimeScope = true; testScope = false; ---AbstractWarMojo snippet -- // TODO: utilise a

Re: javadoc 2.0 plugin: doc-files/* not being copied!

2006-07-09 Thread Rob Dickens
It looks like the problem was confined to the version I'd compiled from src (a week before 2.0 was officially released). Anyway, I just cleared this from my local repository, thereby forcing the released version to be downloaded, and the problem went away. Sorry for having wasted anyone's t

RE: WEB-INF/lib excludes once more

2006-07-09 Thread Mike Perham
Not true. -Original Message- From: Pete Marvin King [mailto:[EMAIL PROTECTED] Sent: Sunday, July 09, 2006 11:52 AM To: Maven Users List Subject: Re: WEB-INF/lib excludes once more if you want to exclude certain dependencies from the war, just specify the scope as compile. only dependenc

Re: WEB-INF/lib excludes once more

2006-07-09 Thread Pete Marvin King
Hello, the exclude paramater of the war plugin is only meant for the webapp sources, the parameter name is a little bit vague. =) if you want to exclude certain dependencies from the war, just specify the scope as compile. only dependencies with runtime scope will be included in the war.

RE: WEB-INF/lib excludes once more

2006-07-09 Thread Mike Perham
You are using excludes incorrectly. maven-war-plugin WEB-INF/lib/*.jar true lib/ maven-ear-plugin lib/

Re: realtivePath - what is it?

2006-07-09 Thread Eric Redmond
The groupdId etc. is useful for when nothing can be found in the relative path. Thanks; Eric On 7/8/06, Alex Shneyderman <[EMAIL PROTECTED]> wrote: > It is a bit confusing since maven has all the information to find pom > in the repository. scratch that, what's confusing is the fact that I n

Re: WEB-INF/lib excludes once more

2006-07-09 Thread Markus Wolf
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 > With evenisse's help I just figured this out today and submitted a patch > to the war plugin documentation, cf MWAR-61. > > I assume that what you want is for the EJB jar to be in the war's > manifest classpath and your mention of putting the ear on

Re: Parse error reading POM. Reason: parser must be on START_TAG or TEXT

2006-07-09 Thread Eric Redmond
There is an XML validator incubating in Mojo: http://svn.codehaus.org/mojo/trunk/mojo/mojo-sandbox/xml-maven-plugin/ I have no idea how active it is, however. Thanks; Eric On 7/9/06, Dennis Lundberg <[EMAIL PROTECTED]> wrote: Wendy Smoak wrote: > On 7/8/06, Aron Smith <[EMAIL PROTECTED]> wrot

Re: Maven Download Stats on Google Homepage

2006-07-09 Thread Carlos Sanchez
I know. My question is where does that script gets the stats from On 7/9/06, Jo Vandermeeren <[EMAIL PROTECTED]> wrote: Carlos, The URL that Graham posted is an RSS feed.. You can just add to your personal Google homepage.. Here is the feed: http://base.google.com/base/a/1303714/D93828524625765

Re: Maven Download Stats on Google Homepage

2006-07-09 Thread Jo Vandermeeren
Carlos, The URL that Graham posted is an RSS feed.. You can just add to your personal Google homepage.. Here is the feed: http://base.google.com/base/a/1303714/D9382852462576509672 Once added, you can customize the groupId and artifactId of the library that you want to monitor.. Cheers Jo On 7

Re: Maven Download Stats on Google Homepage

2006-07-09 Thread Carlos Sanchez
cool, where do you get the data from? On 7/9/06, Graham Lea <[EMAIL PROTECTED]> wrote: Curious to see how many people are downloading your library from Maven? Want to see the progress every day on your Personalized Google Homepage? You need the Maven Stats Gadget! *Google Personalized Homepag

Custom artifact resolving

2006-07-09 Thread Tim Kettler
Hi, a plugin I'm writing depends on an artifact that is not part of the projects dependencies nor should it be on the plugins classpath. So defining it as a dependency under or isn't an option. I decided that the artifact is specified in the plugin configuration like it is done in the depe

Re: Parse error reading POM. Reason: parser must be on START_TAG or TEXT

2006-07-09 Thread Dennis Lundberg
Wendy Smoak wrote: On 7/8/06, Aron Smith <[EMAIL PROTECTED]> wrote: It appears mavens site builder doesnt read my pom.xml - though all the other utilities (compiles, package, filter etc.) are fine. It *is* valid XML (pom.xml follows stacktrace) It doesn't validate against the schema. The e

Re: EJB Manifest Classpath

2006-07-09 Thread David Jencks
On Jul 8, 2006, at 11:40 PM, Markus Wolf wrote: Hi, I've wondering if there is something similar like in Maven 1.x and the WAR-Plugins to have dependencies added to the JARs Classpath entry. For the WAR-plugin this is somewhat documented, but there are no docs for the EJB-plugin. Any idea h

Re: WEB-INF/lib excludes once more

2006-07-09 Thread David Jencks
With evenisse's help I just figured this out today and submitted a patch to the war plugin documentation, cf MWAR-61. I assume that what you want is for the EJB jar to be in the war's manifest classpath and your mention of putting the ear on the m. cp is a typo? Here's my configuration th