Compare commits

..

No commits in common. "e31a82f1c5ee515cee6c3bb1f17a2b66f8eac297" and "e11d3ead979d45b921246655e22b9eb46f5e46ca" have entirely different histories.

2 changed files with 4 additions and 4 deletions

View file

@ -34,8 +34,8 @@ dependencies {
} }
java { java {
sourceCompatibility = JavaVersion.VERSION_17 sourceCompatibility = JavaVersion.VERSION_16
targetCompatibility = JavaVersion.VERSION_17 targetCompatibility = JavaVersion.VERSION_16
} }
tasks.test { tasks.test {
@ -53,7 +53,7 @@ tasks.jar {
} }
tasks.withType<KotlinCompile> { tasks.withType<KotlinCompile> {
kotlinOptions.jvmTarget = "17" kotlinOptions.jvmTarget = "16"
} }
application { application {

View file

@ -2,4 +2,4 @@
# shellcheck disable=SC2046 # shellcheck disable=SC2046
# Word splitting in find results is intentional! # Word splitting in find results is intentional!
kotlinc $(find src/main -type f -iname '*.kt') -jvm-target 17 -include-runtime -d waituntil.jar kotlinc $(find src/main -type f -iname '*.kt') -jvm-target 16 -include-runtime -d waituntil.jar