generated from cortinico/kotlin-gradle-plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsettings.gradle.kts
48 lines (43 loc) · 1.16 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
pluginManagement {
repositories {
gradlePluginPortal()
mavenCentral()
}
}
dependencyResolutionManagement {
repositories {
mavenCentral()
google()
}
}
plugins {
`gradle-enterprise`
}
gradleEnterprise {
buildScan {
termsOfServiceUrl = "https://gradle.com/terms-of-service"
termsOfServiceAgree = "yes"
publishAlwaysIf(System.getenv("GITHUB_ACTIONS") == "true")
publishOnFailure()
}
}
rootProject.name = "gradle-module-dependency-graph-plugin"
include(":example:app")
include(":example:ui")
include(":example:shared-ui")
include(":example:domain")
include(":example:data")
include(":example:models")
include(":example:system-test")
include(":example:theNewThing:feature")
include(":example:theNewThing:ui")
include(":example:theNewThing:domain")
include(":example:theNewThing:data")
include(":example:theNewThing:models")
include(":example:thePremiumThing:feature")
include(":example:thePremiumThing:ui")
include(":example:thePremiumThing:domain")
include(":example:thePremiumThing:data")
include(":example:thePremiumThing:models")
include(":example:system-test")
includeBuild("plugin-build")