Files
kotlin-fork/idea/testData/perfTest/native/_common/settings.gradle.kts
T
2021-03-30 12:34:03 +03:00

15 lines
338 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()
}
}