Skip to content

Commit 7d43c4d

Browse files
authored
Merge pull request #52 from PseudoKnight/master
Modify the squirrelid class path to match WorldGuard release binaries
2 parents d5f75b5 + eba7529 commit 7d43c4d

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

pom.xml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,32 @@
3333
<target>1.7</target>
3434
</configuration>
3535
</plugin>
36+
<plugin>
37+
<groupId>org.apache.maven.plugins</groupId>
38+
<artifactId>maven-shade-plugin</artifactId>
39+
<version>3.2.1</version>
40+
<executions>
41+
<execution>
42+
<phase>package</phase>
43+
<goals>
44+
<goal>shade</goal>
45+
</goals>
46+
<configuration>
47+
<artifactSet>
48+
<includes>
49+
<include>org.dynmap:Dynmap-WorldGuard</include>
50+
</includes>
51+
</artifactSet>
52+
<relocations>
53+
<relocation>
54+
<pattern>com.sk89q.squirrelid</pattern>
55+
<shadedPattern>com.sk89q.worldguard.util.profile</shadedPattern>
56+
</relocation>
57+
</relocations>
58+
</configuration>
59+
</execution>
60+
</executions>
61+
</plugin>
3662
</plugins>
3763
</build>
3864

0 commit comments

Comments
 (0)