Update kotlin gradle plugin; add js target

This commit is contained in:
2019-04-07 13:07:50 -05:00
parent 1abc041d87
commit fe219b5296
6 changed files with 60 additions and 68 deletions

9
core/settings.gradle Normal file
View File

@@ -0,0 +1,9 @@
pluginManagement {
resolutionStrategy {
eachPlugin {
if (requested.id.id == "kotlin-multiplatform") {
useModule("org.jetbrains.kotlin:kotlin-gradle-plugin:${requested.version}")
}
}
}
}