-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.gradle.kts
40 lines (36 loc) · 1.08 KB
/
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
37
38
39
40
pluginManagement {
repositories {
google()
mavenCentral()
jcenter()
gradlePluginPortal()
}
}
dependencyResolutionManagement {
// repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositoriesMode.set(RepositoriesMode.PREFER_PROJECT)
repositories {
google()
jcenter()
mavenCentral()
maven("https://maven.pkg.jetbrains.space/public/p/ktor/eap")
maven("https://s01.oss.sonatype.org/content/repositories/snapshots/")
maven("https://www.jitpack.io")
maven("https://nodejs.org/dist")
maven("https://maven.pkg.jetbrains.space/public/p/kotlinx-html/maven")
}
}
// plugins {
// id("org.gradle.toolchains.foojay-resolver-convention") version "0.5.0"
// }
rootProject.name = "Phone"
include("runtime")
include("compiler")
include("testapi")
include("testcaller")
include("example:api:shared")
include("example:api:clientside")
include("example:api:serverside")
include("example:applications:android")
include("example:applications:server")
include("example:applications:browser")