-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathsettings.gradle
More file actions
77 lines (69 loc) · 2.1 KB
/
settings.gradle
File metadata and controls
77 lines (69 loc) · 2.1 KB
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
plugins {
id "com.gradle.develocity" version "4.0.2"
}
includeBuild('gradle-plugin') {
dependencySubstitution {
substitute module("$GROUP:gradle-plugin") using project(':')
}
}
dependencyResolutionManagement {
repositories {
mavenCentral()
google()
gradlePluginPortal()
maven {
url = "https://central.sonatype.com/repository/maven-snapshots/"
}
}
}
develocity {
buildScan {
def isCi = providers.environmentVariable("CI").isPresent() ||
providers.systemProperty("CI").isPresent() ||
providers.gradleProperty("CI").isPresent()
if (isCi) {
publishing.onlyIf { true }
uploadInBackground = false
}
termsOfUseUrl = "https://gradle.com/terms-of-service"
termsOfUseAgree = "yes"
}
}
rootProject.name = 'app-platform'
include ':di-common:public'
include ':internal:testing'
include ':kotlin-inject:impl'
include ':kotlin-inject:public'
include ':kotlin-inject-extensions:contribute:impl-code-generators'
include ':kotlin-inject-extensions:contribute:public'
include ':ksp-common:public'
include ':ksp-common:testing'
include ':metro:impl'
include ':metro:public'
include ':metro-extensions:contribute:impl-code-generators'
include ':presenter:public'
include ':presenter-molecule:impl'
include ':presenter-molecule:public'
include ':presenter-molecule:testing'
include ':recipes:app'
include ':recipes:common:impl'
include ':renderer:public'
include ':renderer-android-view:public'
include ':renderer-compose-multiplatform:public'
include ':robot:public'
include ':robot-compose-multiplatform:public'
include ':robot-internal:public'
include ':sample:app'
include ':sample:login:impl'
include ':sample:login:impl-robots'
include ':sample:login:public'
include ':sample:navigation:impl'
include ':sample:navigation:public'
include ':sample:templates:impl'
include ':sample:templates:public'
include ':sample:user:impl'
include ':sample:user:impl-robots'
include ':sample:user:public'
include ':sample:user:testing'
include ':scope:public'
include ':scope:testing'