Skip to content

Commit 65a669c

Browse files
Updated dependencies
1 parent de3fd4c commit 65a669c

File tree

2 files changed

+21
-23
lines changed

2 files changed

+21
-23
lines changed

.github/workflows/e2e-testing.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
strategy:
1818
matrix:
1919
include:
20-
- mcVersion: "1.21.2"
20+
- mcVersion: "1.21.1"
2121
javaVersion: "21"
2222
#- mcVersion: 'latest'
2323
# javaVersion: '21'

pom.xml

Lines changed: 20 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,11 @@
1313
<inceptionYear>2013</inceptionYear>
1414
<packaging>jar</packaging>
1515

16-
<!-- Project Info -->
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>
1816
<url>https://github.com/Slimefun/Slimefun4</url>
1917

18+
<description>Slimefun is a Paper plugin that simulates a modpack-like atmosphere by adding over
19+
500 new items and recipes to your Minecraft Server.</description>
20+
2021
<properties>
2122
<!-- UTF-8 is our standard encoding for source files -->
2223
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
@@ -28,7 +29,7 @@
2829
<maven.compiler.testSource>21</maven.compiler.testSource>
2930
<maven.compiler.testTarget>21</maven.compiler.testTarget>
3031

31-
<!-- Spigot properties -->
32+
<!-- Paper properties -->
3233
<paper.version>1.21.1</paper.version>
3334
<paper.javadocs>https://hub.spigotmc.org/javadocs/spigot/</paper.javadocs>
3435

@@ -118,7 +119,7 @@
118119
<!-- Compiler plugin -->
119120
<groupId>org.apache.maven.plugins</groupId>
120121
<artifactId>maven-compiler-plugin</artifactId>
121-
<version>3.13.0</version>
122+
<version>3.14.0</version>
122123

123124
<configuration>
124125
<excludes>
@@ -149,7 +150,7 @@
149150
<!-- Plugin for Unit Tests -->
150151
<groupId>org.apache.maven.plugins</groupId>
151152
<artifactId>maven-surefire-plugin</artifactId>
152-
<version>3.5.2</version>
153+
<version>3.5.3</version>
153154

154155
<configuration>
155156
<junitArtifactName>org.junit.jupiter:junit-jupiter</junitArtifactName>
@@ -161,14 +162,14 @@
161162
<!-- Sonarcloud Scanner -->
162163
<groupId>org.sonarsource.scanner.maven</groupId>
163164
<artifactId>sonar-maven-plugin</artifactId>
164-
<version>5.0.0.4389</version>
165+
<version>5.1.0.4751</version>
165166
</plugin>
166167

167168
<plugin>
168169
<!-- Code Coverage Reports -->
169170
<groupId>org.jacoco</groupId>
170171
<artifactId>jacoco-maven-plugin</artifactId>
171-
<version>0.8.12</version>
172+
<version>0.8.13</version>
172173

173174
<executions>
174175
<execution>
@@ -283,11 +284,13 @@
283284
</group>
284285
<group>
285286
<title>Slimefun4 - Multiblocks</title>
286-
<packages>io.github.thebusybiscuit.slimefun4.implementation.items.multiblocks*</packages>
287+
<packages>
288+
io.github.thebusybiscuit.slimefun4.implementation.items.multiblocks*</packages>
287289
</group>
288290
<group>
289291
<title>Slimefun4 - Electrical Machines</title>
290-
<packages>io.github.thebusybiscuit.slimefun4.implementation.items.electric*</packages>
292+
<packages>
293+
io.github.thebusybiscuit.slimefun4.implementation.items.electric*</packages>
291294
</group>
292295
<group>
293296
<title>Slimefun4 - Old packages</title>
@@ -337,7 +340,7 @@
337340
<dependency>
338341
<groupId>org.junit</groupId>
339342
<artifactId>junit-bom</artifactId>
340-
<version>5.11.4</version>
343+
<version>5.12.2</version>
341344
<type>pom</type>
342345
<scope>import</scope>
343346
</dependency>
@@ -361,12 +364,7 @@
361364
<version>cb22e71335</version>
362365
<scope>compile</scope>
363366
</dependency>
364-
<dependency>
365-
<groupId>com.github.Slimefun.dough</groupId>
366-
<artifactId>dough-api</artifactId>
367-
<version>cb22e71335</version>
368-
<scope>compile</scope>
369-
</dependency>
367+
370368
<dependency>
371369
<groupId>io.papermc</groupId>
372370
<artifactId>paperlib</artifactId>
@@ -391,13 +389,13 @@
391389
<dependency>
392390
<groupId>org.mockito</groupId>
393391
<artifactId>mockito-core</artifactId>
394-
<version>5.15.2</version>
392+
<version>5.17.0</version>
395393
<scope>test</scope>
396394
</dependency>
397395
<dependency>
398396
<groupId>org.slf4j</groupId>
399397
<artifactId>slf4j-simple</artifactId>
400-
<version>2.0.16</version>
398+
<version>2.0.17</version>
401399
<scope>test</scope>
402400
</dependency>
403401
<!-- This needs to be before Spigot because MockBukkit will fail otherwise. -->
@@ -421,7 +419,7 @@
421419
<dependency>
422420
<groupId>com.sk89q.worldedit</groupId>
423421
<artifactId>worldedit-core</artifactId>
424-
<version>7.3.9</version>
422+
<version>7.3.11</version>
425423
<scope>provided</scope>
426424

427425
<exclusions>
@@ -435,7 +433,7 @@
435433
<dependency>
436434
<groupId>com.sk89q.worldedit</groupId>
437435
<artifactId>worldedit-bukkit</artifactId>
438-
<version>7.3.9</version>
436+
<version>7.3.11</version>
439437
<scope>provided</scope>
440438

441439
<exclusions>
@@ -449,7 +447,7 @@
449447
<dependency>
450448
<groupId>com.gmail.nossr50.mcMMO</groupId>
451449
<artifactId>mcMMO</artifactId>
452-
<version>2.2.029</version>
450+
<version>2.2.035</version>
453451
<scope>provided</scope>
454452

455453
<exclusions>
@@ -537,4 +535,4 @@
537535
</exclusions>
538536
</dependency>
539537
</dependencies>
540-
</project>
538+
</project>

0 commit comments

Comments
 (0)