-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.gradle.kts
More file actions
51 lines (47 loc) · 1.67 KB
/
settings.gradle.kts
File metadata and controls
51 lines (47 loc) · 1.67 KB
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
pluginManagement {
val gprUser = providers.gradleProperty("gpr.user").orNull ?: System.getenv("GPR_USER")
val gprKey = providers.gradleProperty("gpr.key").orNull ?: System.getenv("GPR_KEY")
println("GPR_USER = $gprUser")
println("GPR_KEY present? = ${gprKey != null}")
repositories {
mavenCentral() // MOVIDO AL PRINCIPIO
gradlePluginPortal()
google {
content {
includeGroupByRegex("com\\.android.*")
includeGroupByRegex("com\\.google.*")
includeGroupByRegex("androidx.*")
}
}
maven {
url = uri("https://maven.pkg.github.com/rndevelo/build-logic")
credentials {
username = providers.gradleProperty("gpr.user").orNull
?: System.getenv("GPR_USER")
password = providers.gradleProperty("gpr.key").orNull
?: System.getenv("GPR_KEY")
}
}
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
maven { url = uri("https://androidx.dev/snapshots/maven/") }
}
}
rootProject.name = "SimulatorBank"
include(":app")
include(":core:network")
include(":core:common")
include(":features:auth:auth-domain")
include(":features:auth:auth-data")
include(":features:auth:auth-presentation")
include(":features:account:account-domain")
include(":features:account:account-data")
include(":features:account:account-presentation")
include(":features:detail:detail-domain")
include(":features:detail:detail-presentation")
include(":features:detail:detail-data")