I have a project with 4sub-modules and use the reactor to build them.Jens,
My "project maven.xml" should now copy all module-jars and all dependencies of the modules into a single dir.
I tried the <deploy:copy-deps> but this works only when it used in a "module-maven.xml". After that I tried this:
<maven:reactor
basedir="${basedir}/../"
postProcessing="true"
includes="*/project.xml"
excludes="build/*" banner="Generating Site"
ignoreFailures="false"/>
<j:forEach var="x" items="${reactorProjects}">
<ant:echo message="${x}"/> <deploy:copy-deps todir="${maven.build.dir}" projectDescriptor="${x}"/>
</j:forEach>
How can I specifiy the projectDescriptor of deploy:copy-deps ?!
does something like below not work ?
<deploy:copy-deps todir="${maven.build.dir}" projectDescriptor="${x.getFile()}"/>
-- gd
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
