maven-site-plugin was moved from 'build' to special profile for assembly, that spead up 'mvn clean verify' command
This commit is contained in:
parent
8d5d931a99
commit
16b3e07b35
31
pom.xml
31
pom.xml
|
|
@ -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>
|
||||
|
|
|
|||
Loading…
Reference in New Issue