-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.gradle.kts
36 lines (33 loc) · 921 Bytes
/
settings.gradle.kts
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
30
31
32
33
34
35
36
rootProject.name = "yet_another_kmp"
pluginManagement {
repositories {
gradlePluginPortal()
mavenCentral()
google()
maven { url = uri("https://plugins.gradle.org/m2/") }
maven("https://maven.pkg.jetbrains.space/public/p/ktor/eap")
}
resolutionStrategy {
eachPlugin {
if (requested.id.id.startsWith("com.google.cloud.tools.appengine")) {
useModule("com.google.cloud.tools:appengine-gradle-plugin:${requested.version}")
}
}
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
}
}
include(":shared:root")
include(":shared:models")
include(":shared:network")
include(":shared:home")
include(":android:app")
include(":android:navigation")
include(":android:home")
include(":ios")
include(":server")