Skip to content

Commit

Permalink
build: Release 6.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
NotMyFault committed Dec 27, 2021
1 parent 7ffd355 commit b14280b
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 3 deletions.
17 changes: 15 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,23 @@ plugins {
}

the<JavaPluginExtension>().toolchain {
languageVersion.set(JavaLanguageVersion.of(16))
languageVersion.set(JavaLanguageVersion.of(17))
}

version = "6.0.2-SNAPSHOT"
configurations.all {
attributes.attribute(TargetJvmVersion.TARGET_JVM_VERSION_ATTRIBUTE, 17)
}

tasks.compileJava.configure {
options.release.set(16)
}

java {
withJavadocJar()
withSourcesJar()
}

version = "6.0.2"

repositories {
mavenCentral()
Expand Down
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[versions]
# Platform expectations
paper = "1.17.1-R0.1-SNAPSHOT"
paper = "1.18.1-R0.1-SNAPSHOT"

# Plugins
plotsquared = "6.2.1"
Expand Down

0 comments on commit b14280b

Please sign in to comment.