Files
korge-samples/@old/settings.gradle
2019-02-02 09:00:41 +01:00

24 lines
488 B
Groovy

pluginManagement {
resolutionStrategy {
eachPlugin {
if (requested.id.id == "kotlin-multiplatform") {
useModule("org.jetbrains.kotlin:kotlin-gradle-plugin:${requested.version}")
}
}
}
repositories {
mavenLocal()
maven { url 'http://dl.bintray.com/kotlin/kotlin-eap' }
maven { url 'https://plugins.gradle.org/m2/' }
jcenter()
mavenCentral()
}
}
rootProject.name = 'korge-samples'
enableFeaturePreview('GRADLE_METADATA')
include ':korge-sample1'