-
Notifications
You must be signed in to change notification settings - Fork 2
/
settings.gradle.kts
107 lines (100 loc) · 3.35 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
pluginManagement {
repositories {
google()
gradlePluginPortal()
mavenCentral()
}
}
plugins {
id("org.gradle.toolchains.foojay-resolver-convention") version "0.9.0"
}
dependencyResolutionManagement {
repositories {
maven {
setUrl("https://jitpack.io")
content { includeGroupByRegex("com\\.github\\..*") }
}
maven {
// This repository contains pre-release versions of the Compose Compiler
url = uri("https://androidx.dev/storage/compose-compiler/repository/")
content {
includeGroup("androidx.compose.compiler")
}
}
google()
mavenCentral()
}
}
// automatically accept the scans.gradle.com TOS when running in GHA
if (System.getenv("GITHUB_ACTIONS")?.toBoolean() == true) {
extensions.findByName("gradleEnterprise")?.withGroovyBuilder {
getProperty("buildScan").withGroovyBuilder {
setProperty("termsOfServiceUrl", "https://gradle.com/terms-of-service")
setProperty("termsOfServiceAgree", "yes")
}
}
}
includeBuild("build-logic")
include("gto-support-androidx-activity")
include("gto-support-androidx-annotation")
include("gto-support-androidx-collection")
include("gto-support-androidx-compose")
include("gto-support-androidx-compose-material3")
include("gto-support-androidx-constraintlayout")
include("gto-support-androidx-core")
include("gto-support-androidx-databinding")
include("gto-support-androidx-drawerlayout")
include("gto-support-androidx-fragment")
include("gto-support-androidx-lifecycle")
include("gto-support-androidx-recyclerview")
include("gto-support-androidx-room")
include("gto-support-androidx-test-junit")
include("gto-support-androidx-viewpager2")
include("gto-support-androidx-work")
include("gto-support-animation")
include("gto-support-api-base")
include("gto-support-api-okhttp3")
include("gto-support-appcompat")
include("gto-support-base")
include("gto-support-circuit")
include("gto-support-compat")
include("gto-support-core")
include("gto-support-dagger")
include("gto-support-db")
include("gto-support-eventbus")
include("gto-support-facebook")
include("gto-support-facebook-flipper")
include("gto-support-firebase-crashlytics")
include("gto-support-fluidsonic-locale")
include("gto-support-jsonapi")
include("gto-support-jsonapi-core")
include("gto-support-jsonapi-retrofit2")
include("gto-support-jsonapi-scarlet")
include("gto-support-kermit")
include("gto-support-kotlin-coroutines")
include("gto-support-leakcanary2")
include("gto-support-lottie")
include("gto-support-material-components")
include("gto-support-moshi")
include("gto-support-okhttp3")
include("gto-support-okta")
include("gto-support-okta-oidc")
include("gto-support-picasso")
include("gto-support-play-auth")
include("gto-support-realm")
include("gto-support-recyclerview")
include("gto-support-recyclerview-advrecyclerview")
include("gto-support-retrofit2")
include("gto-support-scarlet")
include("gto-support-scarlet-actioncable")
include("gto-support-sync")
include("gto-support-util")
include("gto-support-viewpager")
include("testing:gto-support-dagger")
include("testing:gto-support-picasso")
include("testing:gto-support-timber")
// deprecated modules
include("gto-support-db-coroutines")
include("gto-support-db-livedata")
include("gto-support-db-stream")
include("gto-support-napier")