blob: 49dfe4195688048763b6db3898c5fb64a29853a9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
pluginManagement {
// repositories {
// gradlePluginPortal()
// jcenter()
// // this one is for kotlin-frontend-plugin
// maven { url "https://dl.bintray.com/kotlin/kotlin-eap" }
// }
resolutionStrategy {
eachPlugin {
if (requested.id.id == "kotlin-multiplatform" || requested.id.id == "kotlin2js") {
useModule("org.jetbrains.kotlin:kotlin-gradle-plugin:${requested.version}")
}
// if (requested.id.id == "org.jetbrains.kotlin.frontend") {
// useModule("org.jetbrains.kotlin:kotlin-frontend-plugin:${requested.version}")
// }
}
}
}
rootProject.name = "seven-wonders"
include 'sw-common-model'
include 'sw-engine'
include 'sw-server'
include 'sw-client'
include 'sw-ui'
include 'sw-ui-kt'
enableFeaturePreview("GRADLE_METADATA")
|