Re: Invoke a plugin from command line and specifing an execution id

2009-10-13 Thread Jeff Johnston
I would also love to hear how to do this. I've asked on the mailing list and #maven before but I've never found out a way of doing it. 2009/10/13 kkarad kka...@gmail.com Yes, the prefix:goal is not bound to a phase Alexander-129 wrote: So you want to change Maven build lifecycle

Re: Invoke a plugin from command line and specifing an execution id

2009-10-13 Thread Jeff Johnston
, then run mvn clean deploy. If they need to be optional, use a profile and run mvn -Pwith-ID1-and-ID2 clean deploy. - Brett On 14/10/2009, at 12:55 AM, Jeff Johnston wrote: I would also love to hear how to do this. I've asked on the mailing list and #maven before but I've never found out

Re: Fetching the latest snapshot version without maven

2009-10-07 Thread Jeff Johnston
Nexus has a REST API that could help http://www.sonatype.com/people/2008/11/searching-with-the-sonatype-nexus-rest-api-groovy/ 2009/10/7 Beat Strasser beat.stras...@inventage.com Hi My task is to fetch the latest snapshot version of a maven artifact. How can I do this without having to

running a single execution goal from command line

2009-09-04 Thread Jeff Johnston
My build has a couple of groovy scripts that run before and after integration tests, setting things up and tearing them down. plugin groupIdorg.codehaus.groovy.maven/groupId artifactIdgmaven-plugin/artifactId version1.0/version

Re: 2 questions: including WEB-INF/lib and re-using dependency lists

2009-08-18 Thread Jeff Johnston
For 2, this can be achieved by adding the group of dependencies to a project of type pom and then including this group project as a dependency whenever you need to include the whole group of dependencies. You mark the dependency as of type pom and it just pulls in all the transitive dependencies.

Re: 2 questions: including WEB-INF/lib and re-using dependency lists

2009-08-18 Thread Jeff Johnston
Is your dependencies pom installed in your repository? 2009/8/18 Tako Schotanus quinte...@gmail.com I tried that, but it doesn't seem to work? I just get long lists of compile errors saying can't find symbol. Basically what I did was take a (compiling, working) project with a list of

Re: 2 questions: including WEB-INF/lib and re-using dependency lists

2009-08-18 Thread Jeff Johnston
On Tue, Aug 18, 2009 at 10:46, Jeff Johnston mrjeffjohns...@gmail.com wrote: For 2, this can be achieved by adding the group of dependencies to a project of type pom and then including this group project as a dependency whenever you need to include the whole group