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(""" .addOther("""
tasks { tasks {
compileKotlin { compileKotlin {
kotlinOptions { kotlinOptions.jvmTarget = "1.8"
jvmTarget = "1.8" }
} compileTestKotlin {
kotlinOptions.jvmTarget = "1.8"
} }
}""".trimIndent() }""".trimIndent()
) )