Re: maven-invoker-plugin and dependencies

2010-07-24 Thread Benson Margulies
OK, that's clear enough if a bit on the cumbersome side (remembering to keep adding dependencies). On Sat, Jul 24, 2010 at 3:32 AM, Stephen Connolly wrote: > Sorry that should read: "put the execution in its own module and make that > module depend on all the other modules (which will force that

Re: maven-invoker-plugin and dependencies

2010-07-24 Thread Stephen Connolly
Sorry that should read: "put the execution in its own module and make that module depend on all the other modules (which will force that module to the end of the build plan)" Wouldn't want you having it depend on just half of the modules (every other == every second) ;-) -Stephen On 24 July 2010

Re: maven-invoker-plugin and dependencies

2010-07-24 Thread Stephen Connolly
put the execution in its own module and make that module depend on every other module (which will force that module to the end of the build plan) On 23 July 2010 22:50, Benson Margulies wrote: > I want to add a project that runs the maven-invoker-plugin to the end > of a large, multi-module buil

maven-invoker-plugin and dependencies

2010-07-23 Thread Benson Margulies
I want to add a project that runs the maven-invoker-plugin to the end of a large, multi-module build. How do I ensure that this runs at the end and does not get shuffled by the reactor to some earlier point? Do I have to add dependencies to the project?