1
mirror of https://github.com/StarWishsama/Slimefun4.git synced 2024-09-19 19:25:48 +00:00

[CI skip] Updated the pom slightly

This commit is contained in:
TheBusyBiscuit 2020-05-16 16:12:30 +02:00
parent b3a3f4511b
commit 6a27bfd629
2 changed files with 16 additions and 0 deletions

View File

@ -48,6 +48,7 @@
* Fixed some mojang.com connection errors
* Fixed some very weird SkullMeta serialization problems in 1.15
* Fixed #1914
* Fixed file errors with PerWorldSettingsService
## Release Candidate 11 (25 Apr 2020)

15
pom.xml
View File

@ -290,6 +290,13 @@
<artifactId>MockBukkit</artifactId>
<version>v1.15-d69d9ca9cb-1</version>
<scope>test</scope>
<exclusions>
<!-- We're using JUnit 5, no need to inherit JUnit 4 -->
<exclusion>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
@ -318,6 +325,14 @@
<artifactId>worldedit-bukkit</artifactId>
<version>7.1.0</version>
<scope>provided</scope>
<exclusions>
<!-- This one is ignored because it pops up everytime -->
<!-- I try to import File... yes, I want the java.io one... -->
<exclusion>
<groupId>de.schlichtherle</groupId>
<artifactId>truezip</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>me.clip</groupId>