Change Kotlin jvmTarget back to 1.8

It looks like Kotlin support in the IntelliJ IDEA
doesn't not carry the `jvmTarget = '11'` properly
and it still stick with `1.6` in the code editor

See more info in the SO: https://stackoverflow.com/questions/52888341/does-kotlin-support-java-11
This commit is contained in:
Artem Bilan
2020-12-15 12:00:53 -05:00
parent 38089f4c48
commit 2e20021beb

View File

@@ -210,7 +210,7 @@ configure(javaProjects) { subproject ->
}
compileTestKotlin {
kotlinOptions {
jvmTarget = '11'
jvmTarget = '1.8'
}
}