Skip to content

Commit

Permalink
Update to 1.21
Browse files Browse the repository at this point in the history
  • Loading branch information
FrankTCA committed Oct 24, 2024
1 parent 265375c commit 7465e8e
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,17 +19,17 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Set up JDK 17
uses: actions/setup-java@v2
- uses: actions/checkout@v4
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
java-version: '17'
java-version: '21'
distribution: 'zulu'
- name: Build with Gradle
uses: gradle/gradle-build-action@4137be6a8bf7d7133955359dbd952c0ca73b1021
with:
arguments: jar
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v4
with:
name: DropsOverhaul
path: build/libs
8 changes: 4 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
plugins {
id 'java'
id 'xyz.jpenilla.run-paper' version '2.3.0'
id 'xyz.jpenilla.run-paper' version '2.3.1'
}

group = 'org.infotoast'
version = '2.5'
version = '3.0'

repositories {
mavenCentral()
Expand All @@ -19,7 +19,7 @@ repositories {
}

dependencies {
compileOnly 'io.papermc.paper:paper-api:1.20.6-R0.1-SNAPSHOT'
compileOnly 'io.papermc.paper:paper-api:1.21.1-R0.1-SNAPSHOT'
}

def targetJavaVersion = 21
Expand Down Expand Up @@ -49,7 +49,7 @@ processResources {

tasks {
runServer {
minecraftVersion("1.20.6")
minecraftVersion("1.21.1")
}
}

0 comments on commit 7465e8e

Please sign in to comment.