Skip to content

Commit e31ffd9

Browse files
committed
Merge
2 parents 0ef6ad3 + 3544459 commit e31ffd9

File tree

3 files changed

+28
-26
lines changed

3 files changed

+28
-26
lines changed

pom.xml

Lines changed: 24 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<packaging>jar</packaging>
1515

1616
<!-- Project Info -->
17-
<description>Slimefun is a Spigot/Paper plugin that simulates a modpack-like atmosphere by adding over 500 new items and recipes to your Minecraft Server.</description>
17+
<description>Slimefun is a Paper plugin that simulates a modpack-like atmosphere by adding over 500 new items and recipes to your Minecraft Server.</description>
1818
<url>https://github.com/Slimefun/Slimefun4</url>
1919

2020
<properties>
@@ -29,8 +29,8 @@
2929
<maven.compiler.testTarget>21</maven.compiler.testTarget>
3030

3131
<!-- Spigot properties -->
32-
<spigot.version>1.20.6</spigot.version>
33-
<spigot.javadocs>https://hub.spigotmc.org/javadocs/spigot/</spigot.javadocs>
32+
<paper.version>1.21.1</paper.version>
33+
<paper.javadocs>https://hub.spigotmc.org/javadocs/spigot/</paper.javadocs>
3434

3535
<!-- Default settings for sonarcloud.io -->
3636
<sonar.projectKey>Slimefun_Slimefun4</sonar.projectKey>
@@ -251,7 +251,7 @@
251251

252252
<links>
253253
<!-- We can reference the Spigot API in our Javadocs -->
254-
<link>${spigot.javadocs}</link>
254+
<link>${paper.javadocs}</link>
255255
</links>
256256

257257
<!-- We can group packages together in our Javadocs -->
@@ -354,10 +354,17 @@
354354
</dependency>
355355

356356
<!-- Shaded packages -->
357+
358+
<dependency>
359+
<groupId>com.github.Slimefun.dough</groupId>
360+
<artifactId>dough-api</artifactId>
361+
<version>cb22e71335</version>
362+
<scope>compile</scope>
363+
</dependency>
357364
<dependency>
358-
<groupId>com.github.baked-libs.dough</groupId>
365+
<groupId>com.github.Slimefun.dough</groupId>
359366
<artifactId>dough-api</artifactId>
360-
<version>f8ff25187d</version>
367+
<version>cb22e71335</version>
361368
<scope>compile</scope>
362369
</dependency>
363370
<dependency>
@@ -367,6 +374,14 @@
367374
<scope>compile</scope>
368375
</dependency>
369376

377+
<!-- Paper -->
378+
<dependency>
379+
<groupId>io.papermc.paper</groupId>
380+
<artifactId>paper-api</artifactId>
381+
<version>${paper.version}-R0.1-SNAPSHOT</version>
382+
<scope>provided</scope>
383+
</dependency>
384+
370385
<!-- Testing dependencies -->
371386
<dependency>
372387
<groupId>org.junit.jupiter</groupId>
@@ -387,9 +402,9 @@
387402
</dependency>
388403
<!-- This needs to be before Spigot because MockBukkit will fail otherwise. -->
389404
<dependency>
390-
<groupId>com.github.MockBukkit</groupId>
391-
<artifactId>MockBukkit</artifactId>
392-
<version>c7cc678834</version>
405+
<groupId>com.github.seeseemelk</groupId>
406+
<artifactId>MockBukkit-v1.21</artifactId>
407+
<version>3.133.2</version>
393408
<scope>test</scope>
394409

395410
<exclusions>
@@ -401,13 +416,6 @@
401416
</exclusion>
402417
</exclusions>
403418
</dependency>
404-
<!-- Override Spigot with Paper tests as a CommandMap ctor which MockBukkit uses only exists on Paper but not in Spigot -->
405-
<dependency>
406-
<groupId>io.papermc.paper</groupId>
407-
<artifactId>paper-api</artifactId>
408-
<version>1.20.6-R0.1-SNAPSHOT</version>
409-
<scope>test</scope>
410-
</dependency>
411419

412420
<!-- Third party plugin integrations / soft dependencies -->
413421
<dependency>
@@ -515,12 +523,6 @@
515523
<version>2.6</version>
516524
<scope>compile</scope>
517525
</dependency>
518-
<dependency>
519-
<groupId>org.spigotmc</groupId>
520-
<artifactId>spigot-api</artifactId>
521-
<version>${spigot.version}-R0.1-SNAPSHOT</version>
522-
<scope>provided</scope>
523-
</dependency>
524526
<dependency>
525527
<groupId>com.mojang</groupId>
526528
<artifactId>authlib</artifactId>

src/main/java/io/github/thebusybiscuit/slimefun4/implementation/items/magical/talismans/EnderTalisman.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
/**
1616
* An {@link EnderTalisman} is a special version of {@link Talisman}
1717
* that works while it is in your {@link EnderChest}.
18-
*
18+
*
1919
* @author TheBusyBiscuit
2020
*
2121
*/

src/main/java/io/github/thebusybiscuit/slimefun4/implementation/setup/DefaultItemGroups.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@
1919
/**
2020
* This class holds a reference to every {@link ItemGroup}
2121
* found in Slimefun itself.
22-
*
22+
*
2323
* Addons should use their own {@link ItemGroup} hence why the visible of this class was now
2424
* changed to package-private. Only {@link SlimefunItemSetup} has access to this class.
25-
*
25+
*
2626
* @author TheBusyBiscuit
27-
*
27+
*
2828
* @see ItemGroup
2929
* @see LockedItemGroup
3030
* @see SeasonalItemGroup

0 commit comments

Comments
 (0)