summaryrefslogtreecommitdiff
path: root/settings.gradle
blob: 6afeae6a8caa807f1dca3297af391ac7d932f08f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
pluginManagement {
    // keep this as long as the Gradle plugin is used in EAP version
    repositories {
        maven { url "https://dl.bintray.com/kotlin/kotlin-eap" }
        gradlePluginPortal()
        jcenter()
    }
}

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")
bgstack15