I have a project with 4sub-modules and use the reactor to build them.
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 ?!

Thanks

Jens Zastrow
DAI-Labor -�Technische Universit�t Berlin
Sekretariat GOR 1-1, Franklinstra�e 28/29, 10587 Berlin
Fon: +49 30 314 77777
Fax: +49 30 314 21799
[EMAIL PROTECTED]
http://www.dai-labor.de


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to