Hi,
I'm trying to call ant during the site:site goal:
<build>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<executions>
<execution>
<phase>site</phase>
<configuration>
<tasks>
<echo>TEST ------------------------- </echo>
</tasks>
</configuration>
<goals>
<goal>site</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
Unfortunately the echo task is never executed.
I assume that there is no "site" phase. But I don't
know and can't figure out in what phase the site:site goal is run.
Achim
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]