Hi there,
I posted this to the maven mailing list, but did not get a response. Forgive me when I try it here, but it has at least to do with Merlin as I am using it.
Another newbie question: I've read the introduction to maven as described in http://maven.apache.org/reference/user-guide.html#Multi_Project_Builds_and_t he_Reactor. Then I copied from another source a new goal into my maven.xml.
<goal name="all:java:compile"> <maven:reactor basedir=".." includes="ch.*/**/project.xml" goals="java:compile" banner="Compiling:" ignoreFailures="false"/> </goal>
Take a look at the reactor builds in merlin (or meta, logging, repository, etc.). These are working so at least you have a reference point.
Typically the reactor builds look like the following:
<goal name="whatever" description="Build Whatever.">
<maven:reactor basedir="${basedir}"
includes="**/project.xml"
excludes="project.xml"
banner="Installing:"
goals="jar:install"
ignoreFailures="false"
postProcessing="false" />
</goal>The old main difference I see in th above as compared to you goal is that I'm including a basedir value. Another hint maybe related to use of directory paths with the period character - you may want to try substituting "." with "-" but this is only a hunch.
Cheers, Steve.
--
|------------------------------------------------| | Magic by Merlin | | Production by Avalon | | | | http://avalon.apache.org/merlin | | http://dpml.net/merlin/distributions/latest | |------------------------------------------------|
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
