|
14 | 14 | <packaging>jar</packaging>
|
15 | 15 |
|
16 | 16 | <!-- 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> |
18 | 18 | <url>https://github.com/Slimefun/Slimefun4</url>
|
19 | 19 |
|
20 | 20 | <properties>
|
|
29 | 29 | <maven.compiler.testTarget>21</maven.compiler.testTarget>
|
30 | 30 |
|
31 | 31 | <!-- 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> |
34 | 34 |
|
35 | 35 | <!-- Default settings for sonarcloud.io -->
|
36 | 36 | <sonar.projectKey>Slimefun_Slimefun4</sonar.projectKey>
|
|
251 | 251 |
|
252 | 252 | <links>
|
253 | 253 | <!-- We can reference the Spigot API in our Javadocs -->
|
254 |
| - <link>${spigot.javadocs}</link> |
| 254 | + <link>${paper.javadocs}</link> |
255 | 255 | </links>
|
256 | 256 |
|
257 | 257 | <!-- We can group packages together in our Javadocs -->
|
|
354 | 354 | </dependency>
|
355 | 355 |
|
356 | 356 | <!-- 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> |
357 | 364 | <dependency>
|
358 |
| - <groupId>com.github.baked-libs.dough</groupId> |
| 365 | + <groupId>com.github.Slimefun.dough</groupId> |
359 | 366 | <artifactId>dough-api</artifactId>
|
360 |
| - <version>f8ff25187d</version> |
| 367 | + <version>cb22e71335</version> |
361 | 368 | <scope>compile</scope>
|
362 | 369 | </dependency>
|
363 | 370 | <dependency>
|
|
367 | 374 | <scope>compile</scope>
|
368 | 375 | </dependency>
|
369 | 376 |
|
| 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 | + |
370 | 385 | <!-- Testing dependencies -->
|
371 | 386 | <dependency>
|
372 | 387 | <groupId>org.junit.jupiter</groupId>
|
|
387 | 402 | </dependency>
|
388 | 403 | <!-- This needs to be before Spigot because MockBukkit will fail otherwise. -->
|
389 | 404 | <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> |
393 | 408 | <scope>test</scope>
|
394 | 409 |
|
395 | 410 | <exclusions>
|
|
401 | 416 | </exclusion>
|
402 | 417 | </exclusions>
|
403 | 418 | </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> |
411 | 419 |
|
412 | 420 | <!-- Third party plugin integrations / soft dependencies -->
|
413 | 421 | <dependency>
|
|
515 | 523 | <version>2.6</version>
|
516 | 524 | <scope>compile</scope>
|
517 | 525 | </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> |
524 | 526 | <dependency>
|
525 | 527 | <groupId>com.mojang</groupId>
|
526 | 528 | <artifactId>authlib</artifactId>
|
|
0 commit comments