I have the ant plugin for a group of modules:
<plugin>
<artifactId>maven-antrun-plugin</artifactId>
<executions>
<execution>
<id>bpelc</id>
<phase>package</phase>
<configuration>
<tasks>
<ant
antfile="${project.root}/tools/build-tools/src/main/resources/bpel/build.xml"
inheritRefs="true">
<property name="env.BPEL_HOME"
value="${bpel.home}"/>
<property name="rev" value="${
project.version}"/>
<target name="compile"/>
</ant>
</tasks>
</configuration>
<goals>
<goal>run</goal>
</goals>
</execution>
Then my module has:
<plugin>
<artifactId>maven-antrun-plugin</artifactId>
</plugin>
Now, I have java files that need to 1st be compiled in order for this ant
task to run.
But I never get my source compiled and I get an error.
What am I missing to get this module to compile before the ant task?
--
Thanks,
Mick Knutson
http://www.baselogic.com
http://www.blincmagazine.com
http://www.djmick.com
http://www.myspace.com/mickknutson
http://www.myspace.com/djmick_dot_com
http://www.myspace.com/sexybeotches
http://www.thumpradio.com
---