Disable additional invocation of site plugin, issue #821

By default property [forceSite](https://maven.apache.org/plugins/maven-linkcheck-plugin/linkcheck-mojo.html#forceSite) is `true` and Linkcheck plugin unnecessarily tries to invoke `mvn site` to freshly generate all resources needed for link checking. Not all plugins are ready to support such invocation in different context, e.g. tidy-maven-plugin. Without this additional invocation everything works fine and site generation is faster.
This commit is contained in:
Michal Kordas 2015-03-21 17:39:44 +01:00 committed by Roman Ivanov
parent fd1fb82acb
commit 23e8b1b43f
1 changed files with 1 additions and 0 deletions

View File

@ -1007,6 +1007,7 @@
<httpMethod>GET</httpMethod>
<timeout>3000</timeout>
<httpFollowRedirect>false</httpFollowRedirect>
<forceSite>false</forceSite>
<excludedPages>
<excludedPage>dependencies.html</excludedPage>
<excludedPage>cobertura/**</excludedPage>