-
Notifications
You must be signed in to change notification settings - Fork 7
/
settings.gradle
44 lines (36 loc) · 1.08 KB
/
settings.gradle
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
pluginManagement {
// Include the build-logic project first, otherwise the settings plugin from BunnyAndroidApi will mess with the classpath of build-logic
// and break composite builds for it.
includeBuild('build-logic')
repositories {
mavenCentral()
google()
gradlePluginPortal()
maven {
url "https://oss.sonatype.org/content/repositories/snapshots/"
}
}
}
plugins {
id "com.gradle.develocity" version "3.18.1"
}
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 = 'kotlin-inject-anvil'
include ':compiler'
include ':compiler-utils'
include ':runtime'
include ':runtime-optional'
include ':sample:app'
include ':sample:lib'