fixed java 16 thanks to @davchoo

This commit is contained in:
Kas-tle 2022-07-12 17:09:48 +00:00 committed by GitHub
parent 2dbd39c5a4
commit d1fbb909a5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 15 additions and 5 deletions

View file

@ -16,6 +16,6 @@ dependencies {
tasks.withType<KotlinCompile> {
kotlinOptions {
jvmTarget = "17"
jvmTarget = "16"
}
}

View file

@ -26,8 +26,8 @@ tasks {
}
java {
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
sourceCompatibility = JavaVersion.VERSION_16
targetCompatibility = JavaVersion.VERSION_16
withSourcesJar()
}