-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.gradle.kts
56 lines (48 loc) · 1.25 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
@file:Suppress("UnstableApiUsage")
import java.util.Properties
pluginManagement {
repositories {
includeBuild("build-logic")
google()
mavenCentral()
gradlePluginPortal()
}
}
val gradleProperties = Properties()
gradleProperties.load(file("github.properties").inputStream())
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
maven {
url = uri("https://maven.pkg.github.com/hl-fintech/Core-android")
credentials {
username = System.getenv("github_username") ?: gradleProperties.getProperty("github_username")
password = System.getenv("github_access_token") ?: gradleProperties.getProperty("github_access_token")
}
}
}
}
rootProject.name = "EasyAverage"
include(
":app",
":core:data",
":core:datastore",
":core:db",
":core:domain",
":core:models",
":core:network",
":core:test",
":core:res",
":core:utils",
":feature:common",
":feature:main",
":feature:itemlist",
":feature:setting",
":feature:detail",
":feature:add",
":ui:components",
":ui:route",
":ui:theme",
)