Set JVM 1.8 for test source set as well #KT-34154 Fixed

This commit is contained in:
Anton Yalyshev
2019-10-04 14:27:24 +03:00
parent d2c2128aad
commit fa9125df7d
@@ -153,9 +153,10 @@ class KotlinDslGradleKotlinJavaFrameworkSupportProvider :
.addOther("""
tasks {
compileKotlin {
kotlinOptions {
jvmTarget = "1.8"
}
kotlinOptions.jvmTarget = "1.8"
}
compileTestKotlin {
kotlinOptions.jvmTarget = "1.8"
}
}""".trimIndent()
)