We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7ffd355 commit b14280bCopy full SHA for b14280b
2 files changed
build.gradle.kts
@@ -9,10 +9,23 @@ plugins {
9
}
10
11
the<JavaPluginExtension>().toolchain {
12
- languageVersion.set(JavaLanguageVersion.of(16))
+ languageVersion.set(JavaLanguageVersion.of(17))
13
14
15
-version = "6.0.2-SNAPSHOT"
+configurations.all {
16
+ attributes.attribute(TargetJvmVersion.TARGET_JVM_VERSION_ATTRIBUTE, 17)
17
+}
18
+
19
+tasks.compileJava.configure {
20
+ options.release.set(16)
21
22
23
+java {
24
+ withJavadocJar()
25
+ withSourcesJar()
26
27
28
+version = "6.0.2"
29
30
repositories {
31
mavenCentral()
gradle/libs.versions.toml
@@ -1,6 +1,6 @@
1
[versions]
2
# Platform expectations
3
-paper = "1.17.1-R0.1-SNAPSHOT"
+paper = "1.18.1-R0.1-SNAPSHOT"
4
5
# Plugins
6
plotsquared = "6.2.1"
0 commit comments