Skip to content

Commit 719d8c0

Browse files
committed
Update dependencies
1 parent d1a0f9d commit 719d8c0

File tree

2 files changed

+13
-12
lines changed

2 files changed

+13
-12
lines changed

.github/workflows/maven.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,16 @@ jobs:
77
runs-on: ubuntu-latest
88
steps:
99
- name: Checkout StructureBoxes
10-
uses: actions/checkout@v2
10+
uses: actions/checkout@v3
1111
with:
1212
path: StructureBoxes
1313
- name: Set up JDK 17
14-
uses: actions/setup-java@v2
14+
uses: actions/setup-java@v3
1515
with:
1616
distribution: 'temurin'
1717
java-version: '17'
1818
- name: Cache Maven packages
19-
uses: actions/cache@v2
19+
uses: actions/cache@v3
2020
with:
2121
path: ~/.m2
2222
key: ${{ runner.os }}-m2
@@ -33,7 +33,7 @@ jobs:
3333
- name: Rename jar
3434
run: mv staging/StructureBoxes*.jar staging/StructureBoxes_$GITHUB_SHA.jar
3535
- name: Upload jar
36-
uses: actions/upload-artifact@v2
36+
uses: actions/upload-artifact@v3
3737
with:
3838
name: StructureBoxes_Dev-Build
3939
path: staging/StructureBoxes_*.jar

pom.xml

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
</repository>
2525
<repository>
2626
<id>sk89q-repo</id>
27-
<url>https://maven.sk89q.com/repo</url>
27+
<url>https://maven.enginehub.org/repo/</url>
2828
</repository>
2929
<repository>
3030
<id>github</id>
@@ -51,28 +51,29 @@
5151
<dependency>
5252
<groupId>com.sk89q.worldedit</groupId>
5353
<artifactId>worldedit-core</artifactId>
54-
<version>7.2.3</version>
54+
<version>7.2.9</version>
5555
<scope>provided</scope>
5656
</dependency>
5757
<!--WorldGuard-->
5858
<dependency>
5959
<groupId>com.sk89q.worldguard</groupId>
6060
<artifactId>worldguard-bukkit</artifactId>
61-
<version>7.0.4</version>
61+
<version>7.0.7</version>
6262
<scope>provided</scope>
6363
</dependency>
64+
<!--Annotations-->
65+
<dependency>
66+
<groupId>org.jetbrains</groupId>
67+
<artifactId>annotations-java5</artifactId>
68+
<version>23.1.0</version>
69+
</dependency>
6470
<!--Movecraft-->
6571
<dependency>
6672
<groupId>net.countercraft</groupId>
6773
<artifactId>movecraft</artifactId>
6874
<version>LATEST</version>
6975
<scope>provided</scope>
7076
</dependency>
71-
<dependency>
72-
<groupId>org.jetbrains</groupId>
73-
<artifactId>annotations</artifactId>
74-
<version>23.0.0</version>
75-
</dependency>
7677
</dependencies>
7778

7879
<build>

0 commit comments

Comments
 (0)