Skip to content

Commit

Permalink
Merge reactor#2795 into 3.4.11
Browse files Browse the repository at this point in the history
  • Loading branch information
simonbasle committed Oct 1, 2021
2 parents aaadad6 + 15b9825 commit 608ca46
Showing 1 changed file with 12 additions and 4 deletions.
16 changes: 12 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -256,12 +256,20 @@ configure(subprojects) { p ->
if (p.plugins.hasPlugin("kotlin")) {
println "Applying Kotlin conventions to ${p.name}"
compileKotlin {
kotlinOptions.jvmTarget = "1.8"
kotlinOptions.freeCompilerArgs = ["-Xjsr305=strict"]
kotlinOptions {
jvmTarget = "1.8"
freeCompilerArgs = ["-Xjsr305=strict"]
languageVersion = "1.3" //TODO kotlin languageVersion 1.3 is now deprecated
apiVersion = "1.3"
}
}
compileTestKotlin {
kotlinOptions.jvmTarget = "1.8"
kotlinOptions.freeCompilerArgs = ["-Xjsr305=strict"]
kotlinOptions {
jvmTarget = "1.8"
freeCompilerArgs = ["-Xjsr305=strict"]
languageVersion = "1.3" //TODO kotlin languageVersion 1.3 is now deprecated
apiVersion = "1.3"
}
}
}
}
Expand Down

0 comments on commit 608ca46

Please sign in to comment.