Hi,

I generate my report site by the maven-site-plugin ( mvn site:stage
-DstagingDirectory=...), I would like to launch a plugin after this call.

How can i do It ?

This configuration do not work because site is a plugin and not a phase:

       ...
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-antrun-plugin</artifactId>
                <executions>
                    <execution>
                        <id>job-after-site-stage-call</id>
                        <phase>site</phase>
                          <configuration>
                             <tasks>
                  ....

Regards,

Gerald Reinhart

Reply via email to