-
-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathsettings.gradle.kts
58 lines (51 loc) · 1.38 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
@file:Suppress("UnstableApiUsage")
pluginManagement {
repositories {
google {
content {
includeGroupByRegex("com\\.android.*")
includeGroupByRegex("com\\.google.*")
includeGroupByRegex("androidx.*")
}
}
mavenCentral()
gradlePluginPortal()
maven(url = "https://jitpack.io")
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
gradlePluginPortal()
maven(url = "https://jitpack.io")
}
}
plugins {
// See https://jmfayard.github.io/refreshVersions
id("de.fayard.refreshVersions") version "0.60.5"
// See https://docs.gradle.com/develocity/gradle-plugin/current/
id("com.gradle.develocity").version("3.19")
}
refreshVersions {
rejectVersionIf {
candidate.stabilityLevel.isLessStableThan(current.stabilityLevel)
}
}
develocity {
buildScan {
termsOfUseUrl.set("https://gradle.com/help/legal-terms-of-use")
termsOfUseAgree.set("yes")
publishing.onlyIf { it.buildResult.failures.isNotEmpty() }
}
}
rootProject.name = "Why Not Compose!"
include(":app")
include(":base")
include(":common-ui-compose")
include(":tictactoe")
include(":exoplayer")
include(":cms")
include(":popbackstack")
include(":benchmarks")