summaryrefslogtreecommitdiff
path: root/settings.gradle
blob: ca9aea78f4cfe2765e22139f8a1fea32b052c89b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//pluginManagement {
//    resolutionStrategy {
//        eachPlugin {
//            if (requested.id.id == "kotlin-multiplatform") {
//                useModule("org.jetbrains.kotlin:kotlin-gradle-plugin:${requested.version}")
//            }
//        }
//    }
//}

rootProject.name = "seven-wonders"

include 'sw-ui'
include 'sw-server'
include 'sw-engine'
include 'sw-common-model'
bgstack15