Skip to content

Commit c2b6814

Browse files
committed
update depedency
1 parent 2144ed9 commit c2b6814

3 files changed

Lines changed: 9 additions & 8 deletions

File tree

.github/workflows/maven.yml

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,12 @@ jobs:
1515
if: startsWith(github.event.head_commit.message, '[CI skip]') == false
1616
runs-on: ubuntu-latest
1717
steps:
18-
- uses: actions/checkout@v3.5.3
19-
- name: Set up JDK 16
20-
uses: actions/setup-java@v3.11.0
18+
- uses: actions/checkout@v4
19+
- name: Set up JDK 21
20+
uses: actions/setup-java@v4
2121
with:
22-
java-version: 16
23-
distribution: temurin
22+
java-version: '21'
23+
distribution: 'temurin'
24+
cache: 'maven'
2425
- name: Build with Maven
25-
run: mvn package --file pom.xml
26+
run: mvn package --file pom.xml

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@
137137
<dependency>
138138
<groupId>org.projectlombok</groupId>
139139
<artifactId>lombok</artifactId>
140-
<version>RELEASE</version>
140+
<version>1.18.42</version>
141141
<scope>compile</scope>
142142
</dependency>
143143

src/main/resources/plugin.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ website: https://web.craftingrealm.tk
1818
version: ${project.version}
1919

2020
## This is the minimum minecraft version required to run your plugin.
21-
api-version: 1.14
21+
api-version: 1.21
2222

2323
## This is required and marks Slimefun as a plugin dependency.
2424
depend:

0 commit comments

Comments
 (0)