Build all-in-one JAR, xref, javadoc only on full build & release
This commit is contained in:
parent
b04e806bd9
commit
ea5b294ce0
18
pom.xml
18
pom.xml
@ -75,9 +75,18 @@
|
|||||||
<module>handler</module>
|
<module>handler</module>
|
||||||
<module>example</module>
|
<module>example</module>
|
||||||
<module>testsuite</module>
|
<module>testsuite</module>
|
||||||
<module>all</module>
|
|
||||||
</modules>
|
</modules>
|
||||||
|
|
||||||
|
<profiles>
|
||||||
|
<!-- Build all-in-one JAR, xref, Javadoc only on full build -->
|
||||||
|
<profile>
|
||||||
|
<id>fullbuild</id>
|
||||||
|
<modules>
|
||||||
|
<module>all</module>
|
||||||
|
</modules>
|
||||||
|
</profile>
|
||||||
|
</profiles>
|
||||||
|
|
||||||
<dependencyManagement>
|
<dependencyManagement>
|
||||||
<dependencies>
|
<dependencies>
|
||||||
<!-- JBoss Marshalling - completely optional -->
|
<!-- JBoss Marshalling - completely optional -->
|
||||||
@ -333,6 +342,13 @@
|
|||||||
</execution>
|
</execution>
|
||||||
</executions>
|
</executions>
|
||||||
</plugin>
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<artifactId>maven-release-plugin</artifactId>
|
||||||
|
<version>2.3.1</version>
|
||||||
|
<configuration>
|
||||||
|
<releaseProfiles>release,fullbuild</releaseProfiles>
|
||||||
|
</configuration>
|
||||||
|
</plugin>
|
||||||
</plugins>
|
</plugins>
|
||||||
|
|
||||||
<!-- Workaround for the 'M2E plugin execution not covered' problem.
|
<!-- Workaround for the 'M2E plugin execution not covered' problem.
|
||||||
|
Loading…
Reference in New Issue
Block a user