I have a project with a few subprojects of varying folder-depth like this:

App/
        Project/
                portlets/
                        portletA/
                        portletB/

Each subproject must have its dependencies copied to a specific location
which is specified in each maven.xml separately.  I wrote the following goal
using reactor to run the goal on all subprojects:

    <goal name="portal-deps">
        <maven:reactor
         basedir=".."
         postProcessing="false"
         includes="**/project.xml"
         goals="portal-deps"
         banner="Copying portal dependencies"
         ignoreFailures="false"/>
        <deploy:copy-deps todir="APP-INF/lib"/> 
    </goal>

However, when I run this goal, the reactor tag gets printed out:

portal-deps:
<maven:reactor banner="Copying portal dependencies"
includes="**/project.xml" postProcessing="false" goals="portal-deps"
ignoreFailures="false" basedir=".."></maven:reactor>
    [copy] Copying 5 files to C:\eclipse\workspace\ETportalApp\APP-INF\lib
BUILD SUCCESSFUL
Total time: 1 seconds
Finished at: Wed May 12 15:54:39 PDT 2004

So that strikes me as odd.  And then none of my subprojects get run at all.
Any idea what I'm doing wrong?

Yoway Buorn
Software Engineer
Imagery Systems Engineering

GENERAL DYNAMICS
Advanced Information Systems

"I refuse to tiptoe through life only to arrive safely at death's door."  --
???


Reply via email to