16 lines
396 B
Kotlin
Vendored
16 lines
396 B
Kotlin
Vendored
pluginManagement {
|
|
val kotlin_version: String by settings
|
|
resolutionStrategy {
|
|
eachPlugin {
|
|
if (requested.id.name == "multiplatform") {
|
|
useModule("org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version")
|
|
}
|
|
}
|
|
}
|
|
|
|
repositories {
|
|
gradlePluginPortal()
|
|
maven("https://dl.bintray.com/kotlin/kotlin-dev")
|
|
}
|
|
}
|