Skip to content

Commit

Permalink
Fixed 1.21.3 build bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
WillFP committed Nov 4, 2024
1 parent bb37751 commit 879813d
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 2 deletions.
2 changes: 1 addition & 1 deletion eco-core/core-nms/v1_21/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
group = "com.willfp"
version = rootProject.version

val spigotVersion = "1.21-R0.1-SNAPSHOT"
val spigotVersion = "1.21.1-R0.1-SNAPSHOT"

dependencies {
compileOnly("org.spigotmc:spigot:$spigotVersion")
Expand Down
14 changes: 13 additions & 1 deletion eco-core/core-nms/v1_21_3/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,16 @@ configurations.compileOnly {
resolutionStrategy {
force("org.spigotmc:spigot:$spigotVersion")
}
}
}

tasks {
compileJava {
options.release = 21
}

compileKotlin {
kotlinOptions {
jvmTarget = "21"
}
}
}

0 comments on commit 879813d

Please sign in to comment.