mirror of
https://github.com/shansen/EggCatcher.git
synced 2025-01-03 14:27:49 +01:00
Shading metrics dependency
This commit is contained in:
parent
ebb67312e3
commit
071de94cf2
28
pom.xml
28
pom.xml
@ -10,6 +10,34 @@
|
||||
<name>EggCatcher</name>
|
||||
<url>http://maven.apache.org</url>
|
||||
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-shade-plugin</artifactId>
|
||||
<version>2.0</version>
|
||||
<configuration>
|
||||
<minimizeJar>true</minimizeJar>
|
||||
<artifactSet>
|
||||
<excludes>
|
||||
<exclude>org.bukkit:bukkit</exclude>
|
||||
<exclude>org.yaml:snakeyaml</exclude>
|
||||
<exclude>net.milkbowl.vault:Vault</exclude>
|
||||
</excludes>
|
||||
</artifactSet>
|
||||
</configuration>
|
||||
<executions>
|
||||
<execution>
|
||||
<phase>package</phase>
|
||||
<goals>
|
||||
<goal>shade</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
|
||||
<properties>
|
||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||
</properties>
|
||||
|
Loading…
Reference in New Issue
Block a user