-
-
Notifications
You must be signed in to change notification settings - Fork 159
/
settings.gradle.kts
163 lines (147 loc) · 4.15 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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
/*
* Copyright 2019-2021 Louis Cognault Ayeva Derman. Use of this source code is governed by the Apache 2.0 license.
*/
@file:Suppress("SpellCheckingInspection")
pluginManagement {
repositories {
gradlePluginPortal()
mavenCentral()
google()
}
}
plugins {
id("com.gradle.enterprise").version("3.15")
id("de.fayard.refreshVersions") version "0.60.3"
}
gradleEnterprise {
buildScan {
termsOfServiceUrl = "https://gradle.com/terms-of-service"
termsOfServiceAgree = "yes"
}
}
dependencyResolutionManagement {
repositories {
google()
mavenCentral()
}
}
include {
"samples" {
"android-app"()
}
"fun-packs"(childrenPrefix = "splitties-fun-pack-") {
"android-base"()
"android-base-with-views-dsl"()
"android-appcompat"()
"android-appcompat-with-views-dsl"()
"android-material-components"()
"android-material-components-with-views-dsl"()
}
"test-helpers"()
val checkPublication = "check_publication".let { key ->
extra.properties[key] ?: System.getenv(key)
} == "true"
if (checkPublication) "tools" { "publication-checker"() }
"modules"(childrenPrefix = "splitties-") {
"activities"()
"alertdialog"()
"alertdialog-appcompat"()
"alertdialog-appcompat-coroutines"()
"alertdialog-material"()
"appctx"()
"arch-lifecycle"()
"arch-room"()
"bitflags"()
"bundle"()
"checkedlazy"()
"collections"()
"compose" {
"callable-state"()
}
"coroutines"()
"dimensions"()
"exceptions"()
"experimental"()
"fragmentargs"()
"fragments"()
"intents"()
"lifecycle-coroutines"()
"mainhandler"()
"mainthread"()
"material-colors"()
"material-lists"()
"permissions" {
"core"()
"compose"()
"fragment"()
}
"preferences"()
"resources"()
"snackbar"()
"stetho-init"()
"systemservices"()
"toast"()
"typesaferecyclerview"()
"views"()
"views-appcompat"()
"views-cardview"()
"views-coroutines"()
"views-coroutines-material"()
"views-dsl"()
"views-dsl-appcompat"()
"views-dsl-constraintlayout"()
"views-dsl-coordinatorlayout"()
"views-dsl-ide-preview"()
"views-dsl-material"()
"views-dsl-recyclerview"()
"views-material"()
"views-recyclerview" {
"compose"()
}
"views-selectable"()
"views-selectable-appcompat"()
"views-selectable-constraintlayout"()
}
}
//region include DSL
class ModuleParentScope(
private val name: String,
private val parent: ModuleParentScope? = null,
private val prefix: String
) {
operator fun String.invoke(
childrenPrefix: String = "",
block: (ModuleParentScope.() -> Unit)? = null
) {
check(startsWith(':').not())
if (childrenPrefix.isNotEmpty()) check(block !== null)
val moduleName = ":$this"
val projectPath = "$parentalPath$moduleName"
include(projectPath)
val projectName = if (prefix.isNotEmpty()) {
project(projectPath).let {
val newName = "$prefix${it.name}"
it.name = newName
":$newName"
}
} else moduleName
block?.let { buildNode ->
ModuleParentScope(
name = projectName,
parent = this@ModuleParentScope,
prefix = when {
childrenPrefix.isNotEmpty() -> childrenPrefix
prefix.isEmpty() -> ""
else -> "$prefix$this-"
}
).buildNode()
}
}
private val parentalPath: String =
generateSequence(this) { it.parent }
.map { it.name }.toList().reversed().joinToString("")
}
inline fun include(prefix: String = "", block: ModuleParentScope.() -> Unit) {
ModuleParentScope(name = "", prefix = prefix).block()
}
//endregion