Skip to content

Commit f8f3c57

Browse files
committed
Shade XMaterial
1 parent 1c3b612 commit f8f3c57

File tree

1 file changed

+20
-1
lines changed

1 file changed

+20
-1
lines changed

pom.xml

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,15 +40,34 @@
4040
<pattern>co.aikar.commands</pattern>
4141
<shadedPattern>systems.kscott.randomspawnplus.acf</shadedPattern> <!-- Replace this -->
4242
</relocation>
43+
<relocation>
44+
<pattern>com.cryptomorin.xseries</pattern>
45+
<!-- Be sure to change the package below -->
46+
<shadedPattern>my.plugin.utils</shadedPattern>
47+
</relocation>
4348
</relocations>
49+
<!-- Here you can remove the classes you don't use. -->
50+
<!-- These are some examples. -->
51+
<!-- The "unused" package and SkullCacheListener are excluded by default. -->
52+
<!-- Some utilities such a XItemStack depend on more than 3 other classes, so watch out. -->
53+
<filters>
54+
<filter>
55+
<artifact>*:*</artifact>
56+
<excludes>
57+
<exclude>com/cryptomorin/xseries/XBiome*</exclude>
58+
<exclude>com/cryptomorin/xseries/NMSExtras*</exclude>
59+
<exclude>com/cryptomorin/xseries/NoteBlockMusic*</exclude>
60+
<exclude>com/cryptomorin/xseries/SkullCacheListener*</exclude>
61+
</excludes>
62+
</filter>
63+
</filters>
4464
</configuration>
4565
<executions>
4666
<execution>
4767
<phase>package</phase>
4868
<goals>
4969
<goal>shade</goal>
5070
</goals>
51-
5271
</execution>
5372
</executions>
5473
</plugin>

0 commit comments

Comments
 (0)