Skip to content

Commit 347ab60

Browse files
authored
Merge pull request #111 from josemmo/develop
v1.2.13
2 parents 076d999 + d73fc25 commit 347ab60

File tree

3 files changed

+16
-16
lines changed

3 files changed

+16
-16
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@ jobs:
1010
steps:
1111
# Download code from repository
1212
- name: Checkout code
13-
uses: actions/checkout@v3
13+
uses: actions/checkout@v4
1414

1515
# Setup Java
1616
- name: Setup JDK
17-
uses: actions/setup-java@v3
17+
uses: actions/setup-java@v4
1818
with:
1919
distribution: 'temurin'
2020
java-version: '17'

.github/workflows/tests.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,20 +6,20 @@ jobs:
66
test:
77
runs-on: ubuntu-latest
88
timeout-minutes: 8
9-
continue-on-error: ${{ matrix.version == '1.20.2' }}
9+
continue-on-error: ${{ matrix.version == '1.20.4' }}
1010
strategy:
1111
fail-fast: false
1212
matrix:
1313
flavor: ['bukkit', 'spigot', 'paper', 'purpur']
14-
version: ['1.20.2', '1.19.4', '1.18.2', '1.17.1', '1.16.5']
14+
version: ['1.20.4', '1.19.4', '1.18.2', '1.17.1', '1.16.5']
1515
steps:
1616
# Download code from repository
1717
- name: Checkout code
18-
uses: actions/checkout@v3
18+
uses: actions/checkout@v4
1919

2020
# Setup Java (for building)
2121
- name: Setup JDK (for building)
22-
uses: actions/setup-java@v3
22+
uses: actions/setup-java@v4
2323
with:
2424
distribution: 'temurin'
2525
java-version: '17'
@@ -30,14 +30,14 @@ jobs:
3030

3131
# Setup Java (for testing)
3232
- name: Setup JDK (for testing)
33-
uses: actions/setup-java@v3
33+
uses: actions/setup-java@v4
3434
with:
3535
distribution: 'temurin'
3636
java-version: ${{ startsWith(matrix.version, '1.16') && '11' || (startsWith(matrix.version, '1.17') && '16' || '17') }}
3737

3838
# Setup Node.js
3939
- name: Setup Node.js
40-
uses: actions/setup-node@v3
40+
uses: actions/setup-node@v4
4141
with:
4242
node-version: '20'
4343

pom.xml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>io.josemmo.bukkit.plugin</groupId>
88
<artifactId>YamipaPlugin</artifactId>
9-
<version>1.2.12</version>
9+
<version>1.2.13</version>
1010

1111
<properties>
1212
<maven.compiler.source>8</maven.compiler.source>
@@ -42,15 +42,15 @@
4242
<dependency>
4343
<groupId>org.spigotmc</groupId>
4444
<artifactId>spigot-api</artifactId>
45-
<version>1.20.2-R0.1-SNAPSHOT</version>
45+
<version>1.20.4-R0.1-SNAPSHOT</version>
4646
<scope>provided</scope>
4747
</dependency>
4848

4949
<!-- https://repo.dmulloy2.net/service/rest/repository/browse/public/com/comphenix/protocol/ProtocolLib/ -->
5050
<dependency>
5151
<groupId>com.comphenix.protocol</groupId>
5252
<artifactId>ProtocolLib</artifactId>
53-
<version>5.1.0</version>
53+
<version>5.2.0-SNAPSHOT</version>
5454
<scope>provided</scope>
5555
</dependency>
5656

@@ -89,23 +89,23 @@
8989
<dependency>
9090
<groupId>com.github.TownyAdvanced</groupId>
9191
<artifactId>towny</artifactId>
92-
<version>0.99.6.2</version>
92+
<version>0.100.0.9</version>
9393
<scope>provided</scope>
9494
</dependency>
9595

9696
<!-- https://jitpack.io/com/github/Angeschossen/LandsAPI/ -->
9797
<dependency>
9898
<groupId>com.github.angeschossen</groupId>
9999
<artifactId>LandsAPI</artifactId>
100-
<version>6.35.0</version>
100+
<version>6.42.0</version>
101101
<scope>provided</scope>
102102
</dependency>
103103

104104
<!-- https://repo.maven.apache.org/maven2/org/jetbrains/annotations/ -->
105105
<dependency>
106106
<groupId>org.jetbrains</groupId>
107107
<artifactId>annotations</artifactId>
108-
<version>24.0.1</version>
108+
<version>24.1.0</version>
109109
<scope>provided</scope>
110110
</dependency>
111111
</dependencies>
@@ -122,7 +122,7 @@
122122
<plugin>
123123
<groupId>org.apache.maven.plugins</groupId>
124124
<artifactId>maven-shade-plugin</artifactId>
125-
<version>3.2.4</version>
125+
<version>3.5.1</version>
126126
<executions>
127127
<execution>
128128
<id>shade</id>
@@ -154,7 +154,7 @@
154154
<plugin>
155155
<groupId>org.apache.maven.plugins</groupId>
156156
<artifactId>maven-antrun-plugin</artifactId>
157-
<version>3.0.0</version>
157+
<version>3.1.0</version>
158158
<executions>
159159
<execution>
160160
<phase>package</phase>

0 commit comments

Comments
 (0)