Skip to content

Commit

Permalink
Update pom - Minimise trove dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
fullwall committed Nov 12, 2013
1 parent 2466be1 commit 2761d4b
Showing 1 changed file with 16 additions and 5 deletions.
21 changes: 16 additions & 5 deletions pom.xml
Expand Up @@ -64,10 +64,10 @@
<scope>compile</scope>
</dependency>
<dependency>
<groupId>net.sf.trove4j</groupId>
<artifactId>trove4j</artifactId>
<version>3.0.3</version>
<scope>compile</scope>
<groupId>net.sf.trove4j</groupId>
<artifactId>trove4j</artifactId>
<version>3.0.3</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>net.milkbowl.vault</groupId>
Expand Down Expand Up @@ -136,13 +136,24 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>1.4</version>
<version>2.1</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<minimizeJar>true</minimizeJar>
<filters>
<filter>
<artifact>net.citizensnpcs:citizensapi</artifact>
<includes>
<include>**</include>
</includes>
</filter>
</filters>
</configuration>
</execution>
</executions>
</plugin>
Expand Down

0 comments on commit 2761d4b

Please sign in to comment.