mirror of
https://github.com/jlengrand/korge-samples.git
synced 2026-03-10 15:50:55 +00:00
24 lines
488 B
Groovy
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'
|