also build 1 big jar with all dependencies

This commit is contained in:
Vincent Behar 2011-07-03 15:46:38 +02:00
parent 0539b451dd
commit 161a6309a9

20
pom.xml
View file

@ -91,6 +91,7 @@
<build>
<plugins>
<!-- compiler configuration -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
@ -102,6 +103,25 @@
<showWarnings>true</showWarnings>
</configuration>
</plugin>
<!-- also build 1 big jar with everything -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<executions>
<execution>
<id>make-archive</id>
<phase>package</phase>
<goals>
<goal>attached</goal>
</goals>
<configuration>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
<pluginManagement>
<plugins>