I am using following goal - concept is "borrowed" from Maven top level
maven.xml file (plugin builds)
<goal name="gac:component"
description="Build a component by name $${component.name} ">
<echo>
+----------------------------------------
| Building ${component.name}
+----------------------------------------
</echo>
<exec executable="${maven.bin.script}">
<arg line="--nobanner"/>
<arg line="-d ${maven.src.dir}/components/${component.name}"/>
<arg line="-p
${maven.src.dir}/components/${component.name}/project.xml"/>
</exec>
</goal>
I want to have possibility to build component by simply specifying its name.
I have some problems with this.
It seems that it is not working smoothly...
So before I will try to solve this problems I would like to know if it can
be attacked from different side - is there a reason why it cannot be
achieved through reactor?
I am kind of short in time those days so I am going to try it soon anyway.
So maybe in mean time somebody can give me hints
regarding this problem.
- is reactor applicable for such builds (single goal, single project)
- is there a special reason why builds in above example are started in
separate processes?
etc..
Michal
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>