I have two goals in my maven.xml which work fine independently. Both use the one uses multiproject, the other uses reactor. I have a third goal which calls the other two goals, this goal fails with the error
BUILD FAILED
File...... file:/D:/java/apache/maven-cvsbuild/plugins/maven-multiproject-plugin-1.1-SNAPSHOT/
Element... maven:reactor
Line...... 174
Column.... 9
Unable to obtain goal [multiproject:install-callback] -- file:/D:/java/apache/maven-cvsbuild/plugins/maven-multiproject-plugin-1.1-SNAPSHOT/:210:61: <attainGoal> No goal [ejb:install]
Total time: 10 seconds
Finished at: Mon Sep 15 16:19:17 CST 2003
I'm guessing theres some sort of conflict between the different invocations of the reactor.
maven.xml snip
<goal name="op:ejbgen"
description="generate weblogic ejb src"> <maven:reactor
basedir="${basedir}/../logistics"
postProcessing="true"
includes="project.xml"
goals="ejbgen"
banner="Generating Logistics"
ignoreFailures="false"/>
</goal>
<goal name="op:ear"
description="generate weblogic ejb src"
prereqs="multiproject:install, ear, weblogic:deploy"/><goal name="op:full" prereqs="op:ejbgen, op:ear"/>
cheers Nathan
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
