update to 1.18 prerelease 5 & Java 17

This commit is contained in:
dfsek
2021-11-21 14:12:51 -07:00
parent bb515444c6
commit e227095319
4 changed files with 9 additions and 9 deletions

View File

@@ -9,6 +9,6 @@ repositories {
}
dependencies {
"implementation"("com.github.jengelman.gradle.plugins:shadow:+")
"implementation"("gradle.plugin.com.github.jengelman.gradle.plugins:shadow:+")
"implementation"("org.yaml:snakeyaml:1.27")
}

View File

@@ -21,8 +21,8 @@ fun Project.configureCompilation() {
apply(plugin = "idea")
configure<JavaPluginExtension> {
sourceCompatibility = JavaVersion.VERSION_16
targetCompatibility = JavaVersion.VERSION_16
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}
tasks.withType<JavaCompile> {