I am trying to set up site/site deploy so that they automatically run during
the deploy phase. However when I do this and have the surefire reports
plugin it runs the tests twice - is there a way to stop it running the tests
twice?

I have got in plugins

<plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-site-plugin</artifactId>
                <executions>
                    <execution>
                        <id>deploy</id>
                        <phase>deploy</phase>
                        <goals>
                            <goal>site</goal>
                            <goal>deploy</goal>
                        </goals>
                    </execution>
                </executions>
</plugin>


Thanks

Ben

Reply via email to