Skip to content

Commit

Permalink
Update to 1.21.1
Browse files Browse the repository at this point in the history
  • Loading branch information
FrankTCA committed Oct 23, 2024
1 parent 84ba661 commit 83a0d99
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 6 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -116,3 +116,5 @@ run/

# Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored)
!gradle-wrapper.jar

gradle.properties
13 changes: 7 additions & 6 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
plugins {
id 'java'
id 'com.github.johnrengelman.shadow' version '8.1.1'
id 'xyz.jpenilla.run-paper' version '2.3.0'
id 'com.gradleup.shadow' version '8.3.3'
id 'xyz.jpenilla.run-paper' version '2.3.1'
}

group = 'org.infotoast'
Expand All @@ -24,13 +24,14 @@ repositories {
}

dependencies {
compileOnly 'io.papermc.paper:paper-api:1.20.4-R0.1-SNAPSHOT'
implementation 'de.tr7zw:item-nbt-api:2.12.4'
compileOnly 'io.papermc.paper:paper-api:1.21.1-R0.1-SNAPSHOT'
implementation 'de.tr7zw:item-nbt-api:2.13.2'
}

def targetJavaVersion = 17
def targetJavaVersion = 21
java {
def javaVersion = JavaVersion.toVersion(targetJavaVersion)
toolchain.languageVersion.set(JavaLanguageVersion.of(21))
sourceCompatibility = javaVersion
targetCompatibility = javaVersion
if (JavaVersion.current() < javaVersion) {
Expand All @@ -55,7 +56,7 @@ processResources {

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

Expand Down
Binary file modified src/main/resources/EasyTrees.zip
Binary file not shown.

0 comments on commit 83a0d99

Please sign in to comment.