Skip to content

Commit

Permalink
build(buildSrc): set compileJava and compileKotlin targets to 8
Browse files Browse the repository at this point in the history
  • Loading branch information
yusshu committed Jul 2, 2024
1 parent cae2ef7 commit 80b3a0c
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions buildSrc/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,15 @@ repositories {

dependencies {
implementation("gradle.plugin.org.cadixdev.gradle:licenser:0.6.1")
}

tasks {
compileJava {
options.release.set(8)
}
compileKotlin {
kotlinOptions {
jvmTarget = "1.8"
}
}
}

0 comments on commit 80b3a0c

Please sign in to comment.