Not using Maven's shade plugin anymore to create a fat JAR

This commit is contained in:
Alexander Zagniotov
2012-12-19 16:40:13 -08:00
parent b727a63bec
commit ebf8913f47

31
pom.xml
View File

@@ -94,9 +94,6 @@
<goals>
<goal>jar</goal>
</goals>
<configuration>
<classifier>no-dependencies</classifier>
</configuration>
</execution>
</executions>
<configuration>
@@ -182,34 +179,6 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>1.7</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<filters>
<filter>
<artifact>org.eclipse.jetty.orbit:javax.servlet</artifact>
<excludes>
<exclude>META-INF/ECLIPSE.SF</exclude>
<exclude>META-INF/ECLIPSE.RSA</exclude>
<exclude>META-INF/ECLIPSEF.SF</exclude>
<exclude>META-INF/ECLIPSEF.RSA</exclude>
<exclude>META-INF/ECLIPSE.INF</exclude>
<exclude>META-INF/eclipse.inf</exclude>
</excludes>
</filter>
</filters>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>