Commit 290578db authored by Nikolay Igotti's avatar Nikolay Igotti

Use Kotlin 1.5.31 in JS sample.

parent 0099ae4d
plugins { plugins {
// Cannot move to 1.5.31 due to kotlin("multiplatform") version "1.5.31"
// "Cannot change attributes of dependency configuration ':commonTestApiDependenciesMetadata' after it has been resolved"
kotlin("multiplatform") version "1.5.20"
} }
repositories { repositories {
...@@ -50,7 +48,8 @@ kotlin { ...@@ -50,7 +48,8 @@ kotlin {
// We cannot use it directly but need to extract data from there. // We cannot use it directly but need to extract data from there.
implementation("org.jetbrains.skiko:skiko-js-runtime:$version") implementation("org.jetbrains.skiko:skiko-js-runtime:$version")
} }
resources.setSrcDirs(resources.srcDirs + unzipTask.get().destinationDir) resources.setSrcDirs(resources.srcDirs)
resources.srcDirs(unzipTask.map { it.destinationDir })
} }
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment