maven-site-plugin was moved from 'build' to special profile for assembly, that spead up 'mvn clean verify' command

This commit is contained in:
Roman Ivanov 2015-02-26 10:59:02 -08:00
parent 8d5d931a99
commit 16b3e07b35
1 changed files with 15 additions and 16 deletions

31
pom.xml
View File

@ -527,22 +527,6 @@
</configuration>
</plugin>
<!-- Generates the site, which is required for assembly -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
<version>${maven.site.plugin.version}</version>
<executions>
<execution>
<id>gen-site</id>
<phase>prepare-package</phase>
<goals>
<goal>site</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
@ -839,6 +823,21 @@
<build>
<plugins>
<!-- Generates the site, which is required for assembly -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
<version>${maven.site.plugin.version}</version>
<executions>
<execution>
<id>gen-site</id>
<phase>prepare-package</phase>
<goals>
<goal>site</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- Creates the all inclusive uber jar -->
<plugin>