-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsettings.gradle.kts
62 lines (56 loc) · 1.74 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
pluginManagement {
repositories {
google()
maven("https://cruglobal.jfrog.io/artifactory/maven-mobile/") {
content {
includeGroup("org.cru.mobile.fork.antlr-kotlin")
}
}
gradlePluginPortal()
mavenCentral()
}
}
plugins {
id("org.gradle.toolchains.foojay-resolver-convention") version "0.9.0"
}
dependencyResolutionManagement {
repositories {
maven("https://jitpack.io") {
content {
includeGroup("com.strumenta.antlr-kotlin")
}
}
maven("https://raw.githubusercontent.com/Deezer/KustomExport/mvn-repo") {
content {
includeGroup("deezer.kustomexport")
}
}
maven("https://cruglobal.jfrog.io/artifactory/maven-mobile/") {
content {
includeGroup("org.ccci.gto.android")
includeGroup("org.cru.mobile.fork.antlr-kotlin")
includeGroup("org.cru.mobile.fork.material-color-utilities")
}
}
google()
mavenCentral()
}
}
includeBuild("build-logic")
include("module:analytics")
include("module:common")
include("module:interop")
include("module:parser")
include("module:parser-expressions")
include("module:state")
include("module:user-activity")
include("publishing:npm")
// 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")
}
}
}