Ian Neruda wrote:

-Maven
-projects
-maven.xml
-Project1
-Project2


Maven.xml looks like this:
<goal name="java:compile">
    <maven:reactor
      basedir="${basedir}"
      includes="*/project.xml"
      banner="Building"
      ignoreFailures="false"
    />
</goal>

Am I doing something wrong?

Yup. The reactor includes itsef in the build, which casuses infiniter recursion. Try adding the following attribute.


excludes="project.xml"

hope this helps
R.

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



Reply via email to