GradleConfiguratorTest: fix configureJvmEAPWithBuildGradleKts test

This commit is contained in:
Dmitry Gridin
2019-07-15 16:14:01 +03:00
parent 46dfff7d82
commit 8887031962
@@ -15,7 +15,7 @@ repositories {
dependencies { dependencies {
testCompile("junit", "junit", "4.12") testCompile("junit", "junit", "4.12")
compile(kotlin("stdlib-jdk8")) implementation(kotlin("stdlib-jdk8"))
} }
configure<JavaPluginConvention> { configure<JavaPluginConvention> {
@@ -28,4 +28,4 @@ compileKotlin.kotlinOptions {
val compileTestKotlin: KotlinCompile by tasks val compileTestKotlin: KotlinCompile by tasks
compileTestKotlin.kotlinOptions { compileTestKotlin.kotlinOptions {
jvmTarget = "1.8" jvmTarget = "1.8"
} }