Hi,
I am using the new @execute tag with a custom lifecycle.xml:
<lifecycles>
<lifecycle>
<id>clover</id>
<phases>
<phase>
<id>generate-sources</id>
<executions>
<execution>
<configuration>
<outputDirectory>${project.build.directory}/clover</outputDirectory>
</configuration>
<goals>
<goal>instrument</goal>
</goals>
</execution>
</executions>
</phase>
</phases>
</lifecycle>
</lifecycles>
I was expecting that this would modify the project.build.directory value so
that all goals called thereafter and using ${project.build.directory} would
use the new value. But it's not happening.
Can anyone tell me what is the expected behavior?
Thanks
-Vincent
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]