[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 + sourceSets.test.output +
files(shadowJar.archivePath) + files(shadowJar.archivePath) +
configurations.shadow configurations.shadow
systemProperty("kotlin.version", buildKotlinVersion) systemProperty("kotlin.version", kotlinVersion)
systemProperty("kotlin.repo", buildKotlinCompilerRepo) systemProperty("kotlin.repo", kotlinCompilerRepo)
if (project.hasProperty("konan.home")) { if (project.hasProperty("konan.home")) {
systemProperty("konan.home", project.property("konan.home")) systemProperty("konan.home", project.property("konan.home"))
} else { } else {
@@ -853,6 +853,7 @@ class ExperimentalPluginTests {
jcenter() jcenter()
maven { it.setUrl("http://kotlin.bintray.com/kotlin-eap") } maven { it.setUrl("http://kotlin.bintray.com/kotlin-eap") }
maven { it.setUrl("http://kotlin.bintray.com/kotlin-dev") } maven { it.setUrl("http://kotlin.bintray.com/kotlin-dev") }
maven { it.setUrl(MultiplatformSpecification.KOTLIN_REPO) }
} }
evaluate() evaluate()
tasks.withType(KotlinNativeCompile::class.java).all { tasks.withType(KotlinNativeCompile::class.java).all {