Re: Accessing *reactor* build path in an Ant-Maven-plugin

2013-07-10 Thread Mirko Friedenhagen
Hello Russel, thanks, but how do I specify this in Ant-Mojos? Regards Mirko -- Sent from my mobile On Jul 10, 2013 2:37 PM, "Russell Gold" wrote: > Hi Mirko. If you want the compile class path for the pom executing a > plugin, you can do this: > > 1. Configure the plugin to require compile and

Re: Accessing *reactor* build path in an Ant-Maven-plugin

2013-07-10 Thread Russell Gold
Hi Mirko. If you want the compile class path for the pom executing a plugin, you can do this: 1. Configure the plugin to require compile and runtime dependency resolution: @Mojo( ... requiresDependencyResolution = ResolutionScope.COMPILE_PLUS_RUNTIME) 2. Specify a parameter configured to receiv

Accessing *reactor* build path in an Ant-Maven-plugin

2013-07-09 Thread Mirko Friedenhagen
Hello, I inherited a Maven plugin written by an Ant-master which currently execs mvn dependency:build-classpath to inspect files. (Rewrite almost impossible as there are no tests). This leads to problems during the first run of verify (e.g. while release:prepare). Any hint how to get the *reacto