Skip to content

Commit

Permalink
specify kotlin jvm target as 21
Browse files Browse the repository at this point in the history
  • Loading branch information
auxves committed May 18, 2024
1 parent 0ec8a6b commit 62398ee
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,10 @@ tasks.named<Copy>("processResources") {
}
}

tasks.withType<KotlinCompile> {
kotlinOptions.jvmTarget = "21"
}

tasks.withType<Jar> {
from("LICENSE")
}

0 comments on commit 62398ee

Please sign in to comment.