[gradle-plugin] Fix serialization test (#2171)

This commit is contained in:
Ilya Matveev
2018-10-05 09:41:22 +03:00
committed by GitHub
parent 1bcbdf93dc
commit d3400b16dd
2 changed files with 3 additions and 2 deletions
@@ -141,8 +141,8 @@ test {
sourceSets.test.output +
files(shadowJar.archivePath) +
configurations.shadow
systemProperty("kotlin.version", buildKotlinVersion)
systemProperty("kotlin.repo", buildKotlinCompilerRepo)
systemProperty("kotlin.version", kotlinVersion)
systemProperty("kotlin.repo", kotlinCompilerRepo)
if (project.hasProperty("konan.home")) {
systemProperty("konan.home", project.property("konan.home"))
} else {
@@ -853,6 +853,7 @@ class ExperimentalPluginTests {
jcenter()
maven { it.setUrl("http://kotlin.bintray.com/kotlin-eap") }
maven { it.setUrl("http://kotlin.bintray.com/kotlin-dev") }
maven { it.setUrl(MultiplatformSpecification.KOTLIN_REPO) }
}
evaluate()
tasks.withType(KotlinNativeCompile::class.java).all {