You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: build.gradle.kts
+5-5
Original file line number
Diff line number
Diff line change
@@ -4,8 +4,8 @@ import java.time.Instant
4
4
plugins {
5
5
`java-library`
6
6
7
-
id("com.github.johnrengelman.shadow") version "8.1.1"// Shades and relocates dependencies, See https://imperceptiblethoughts.com/shadow/introduction/
8
-
id("xyz.jpenilla.run-paper") version "2.3.0"// Adds runServer and runMojangMappedServer tasks for testing
7
+
id("io.github.goooler.shadow") version "8.1.8"// Shades and relocates dependencies, See https://imperceptiblethoughts.com/shadow/introduction/
8
+
id("xyz.jpenilla.run-paper") version "2.3.1"// Adds runServer and runMojangMappedServer tasks for testing
9
9
id("net.minecrell.plugin-yml.bukkit") version "0.6.0"// Automatic plugin.yml generation
10
10
11
11
eclipse
@@ -18,7 +18,7 @@ description = ""
18
18
val mainPackage ="${project.group}.${rootProject.name.lowercase()}"
19
19
20
20
java {
21
-
toolchain.languageVersion.set(JavaLanguageVersion.of(17)) // Configure the java toolchain. This allows gradle to auto-provision JDK 17 on systems that only have JDK 8 installed for example.
21
+
toolchain.languageVersion.set(JavaLanguageVersion.of(21)) // Configure the java toolchain. This allows gradle to auto-provision JDK 17 on systems that only have JDK 8 installed for example.
22
22
withJavadocJar() // Enable Javadoc generation
23
23
withSourcesJar()
24
24
}
@@ -59,7 +59,7 @@ tasks {
59
59
60
60
// Set the release flag. This configures what version bytecode the compiler will emit, as well as what JDK APIs are usable.
61
61
// See https://openjdk.java.net/jeps/247 for more information.
0 commit comments