-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.gradle.kts
58 lines (47 loc) · 1.43 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
import java.net.URI
include(":core:designsystem")
include(":core:model")
include(":core:domain")
include(":core:data")
pluginManagement {
includeBuild("build-logic")
repositories {
maven {
url = java.net.URI.create("https://maven.aliyun.com/repository/public/")
}
maven { url = java.net.URI.create("https://maven.aliyun.com/repository/google/")}
maven { url = java.net.URI.create("https://maven.aliyun.com/repository/gradle-plugin/")}
maven { url = java.net.URI.create("https://jitpack.io") }
google()
mavenCentral()
gradlePluginPortal()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
maven {
url = java.net.URI.create("https://maven.aliyun.com/repository/public/")
}
maven {
url = java.net.URI.create("https://maven.aliyun.com/repository/google/")
}
maven {
url = java.net.URI.create("https://maven.aliyun.com/repository/gradle-plugin/")
}
google()
mavenCentral()
}
}
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
rootProject.name = "Speedy"
include(":app")
include(":benchmarks")
include(":core:common")
include(":core:data")
include(":core:model")
include(":core:domain")
include(":core:network")
include(":core:designsystem")
include(":core:testing")
include(":LocalRepo:shimmer")