Use maven-shade to merge API jar into dynmap.jar

This commit is contained in:
Mike Primm 2011-11-16 14:23:52 +08:00 committed by mikeprimm
parent 040a604e0c
commit 7830c6a1c2

23
pom.xml
View File

@ -64,7 +64,28 @@
</execution>
</executions>
</plugin>
</plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>1.5</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<artifactSet>
<excludes>
<exclude>org.bukkit:bukkit:jar:*</exclude>
<exclude>com.nijikokun.bukkit:Permissions:jar:*</exclude>
</excludes>
</artifactSet>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>