Skip to content

Commit

Permalink
Merge pull request #486 from avisi-cloud/lower-jre-version-requirement
Browse files Browse the repository at this point in the history
Lower the JRE version requirement to version 17
  • Loading branch information
dirkgroot committed Apr 10, 2024
2 parents af60c83 + 79ee4d4 commit 5ed6670
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import org.jetbrains.kotlin.gradle.dsl.JvmTarget

plugins {
kotlin("jvm") version "1.9.23"
kotlin("plugin.serialization") version "1.9.23"
Expand Down Expand Up @@ -52,6 +54,13 @@ application {

kotlin {
jvmToolchain(21)
compilerOptions {
jvmTarget.set(JvmTarget.JVM_17)
}
}

java {
targetCompatibility = JavaVersion.VERSION_17
}

tasks {
Expand Down

0 comments on commit 5ed6670

Please sign in to comment.