Re-configure how libraries are shaded.

This commit is contained in:
sk89q 2014-08-02 09:49:52 -07:00
parent 81a727fe7f
commit a1d59373ac

15
pom.xml
View File

@ -383,8 +383,23 @@
<include>org.khelekore:prtree</include> <include>org.khelekore:prtree</include>
<include>com.jolbox:bonecp</include> <include>com.jolbox:bonecp</include>
<include>org.flywaydb:flyway-core</include> <include>org.flywaydb:flyway-core</include>
<include>com.sk89q:squirrelid</include>
</includes> </includes>
</artifactSet> </artifactSet>
<relocations>
<relocation>
<pattern>com.jolbox.bonecp</pattern>
<shadedPattern>com.sk89q.worldguard.internal.bonecp</shadedPattern>
</relocation>
<relocation>
<pattern>org.flywaydb</pattern>
<shadedPattern>com.sk89q.worldguard.internal.flywaydb</shadedPattern>
</relocation>
<relocation>
<pattern>com.sk89q.squirrelid</pattern>
<shadedPattern>com.sk89q.worldguard.util.profile</shadedPattern>
</relocation>
</relocations>
</configuration> </configuration>
</execution> </execution>
</executions> </executions>