We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9545c32 commit 1a15822Copy full SHA for 1a15822
2 files changed
cloud-sponge/build.gradle.kts
@@ -11,10 +11,10 @@ dependencies {
11
implementation(libs.cloud.brigadier)
12
implementation(project(":cloud-minecraft-modded-common", configuration = "namedElements"))
13
compileOnly("org.spongepowered:spongeapi:11.0.0-SNAPSHOT")
14
- compileOnly("org.spongepowered:sponge:1.20.2-11.0.0-SNAPSHOT")
+ compileOnly("org.spongepowered:sponge:1.20.4-11.0.0-SNAPSHOT")
15
}
16
17
minecraft {
18
- version("1.20.2")
+ version("1.20.4")
19
platform(MinecraftPlatform.JOINED)
20
examples/example-sponge/build.gradle.kts
@@ -49,3 +49,10 @@ configurations {
49
50
51
52
+
53
+afterEvaluate {
54
+ tasks.compileJava {
55
+ // TODO - sponge AP not compatible with J21
56
+ options.compilerArgs.remove("-Werror")
57
+ }
58
+}
0 commit comments