General cleanup
- Moved XSeries to Maven - Updated UpdateManager - New ConfigUpdater
This commit is contained in:
parent
346f9bcb00
commit
4e9ac799a2
23 changed files with 616 additions and 3886 deletions
38
pom.xml
38
pom.xml
|
@ -53,7 +53,30 @@
|
|||
<pattern>com.zaxxer.hikari</pattern>
|
||||
<shadedPattern>nl.SBDeveloper.V10Lift.utils.hikari</shadedPattern>
|
||||
</relocation>
|
||||
<relocation>
|
||||
<pattern>com.cryptomorin.xseries</pattern>
|
||||
<shadedPattern>nl.SBDeveloper.V10Lift.utils.xseries</shadedPattern>
|
||||
</relocation>
|
||||
</relocations>
|
||||
<filters>
|
||||
<filter>
|
||||
<artifact>*:*</artifact>
|
||||
<excludes>
|
||||
<exclude>com/cryptomorin/xseries/XPotion*</exclude>
|
||||
<exclude>com/cryptomorin/xseries/XItemStack*</exclude>
|
||||
<exclude>com/cryptomorin/xseries/XEntity*</exclude>
|
||||
<exclude>com/cryptomorin/xseries/XEnchantment*</exclude>
|
||||
<exclude>com/cryptomorin/xseries/XBlock*</exclude>
|
||||
<exclude>com/cryptomorin/xseries/XBiome*</exclude>
|
||||
<exclude>com/cryptomorin/xseries/SkullUtils*</exclude>
|
||||
<exclude>com/cryptomorin/xseries/ReflectionUtils*</exclude>
|
||||
<exclude>com/cryptomorin/xseries/NMSExtras*</exclude>
|
||||
<exclude>com/cryptomorin/xseries/NoteBlockMusic*</exclude>
|
||||
<exclude>com/cryptomorin/xseries/particles/*</exclude>
|
||||
<exclude>com/cryptomorin/xseries/messages/*</exclude>
|
||||
</excludes>
|
||||
</filter>
|
||||
</filters>
|
||||
</configuration>
|
||||
<executions>
|
||||
<execution>
|
||||
|
@ -161,6 +184,14 @@
|
|||
<scope>provided</scope>
|
||||
</dependency>
|
||||
|
||||
<!-- SnakeYAML - Included in Spigot and used for the ConfigUpdater -->
|
||||
<dependency>
|
||||
<groupId>org.yaml</groupId>
|
||||
<artifactId>snakeyaml</artifactId>
|
||||
<version>1.27</version>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
|
||||
<!-- Lombok, used for the objects -->
|
||||
<dependency>
|
||||
<groupId>org.projectlombok</groupId>
|
||||
|
@ -185,6 +216,13 @@
|
|||
<scope>provided</scope>
|
||||
</dependency>
|
||||
|
||||
<!-- XSeries, used for multi version support -->
|
||||
<dependency>
|
||||
<groupId>com.github.cryptomorin</groupId>
|
||||
<artifactId>XSeries</artifactId>
|
||||
<version>7.9.1.1</version>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>com.google.code.findbugs</groupId>
|
||||
<artifactId>jsr305</artifactId>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue