-
Notifications
You must be signed in to change notification settings - Fork 104
Expand file tree
/
Copy pathsettings.gradle
More file actions
35 lines (30 loc) · 814 Bytes
/
settings.gradle
File metadata and controls
35 lines (30 loc) · 814 Bytes
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
pluginManagement {
repositories {
mavenCentral()
gradlePluginPortal()
}
plugins {
id("com.gradle.develocity") version "4.4.1"
id("org.gradle.toolchains.foojay-resolver-convention") version "1.0.0"
}
}
plugins {
id("com.gradle.develocity")
id("org.gradle.toolchains.foojay-resolver-convention")
}
dependencyResolutionManagement {
repositories {
mavenCentral()
}
}
develocity {
// default is scans.gradle.com
buildScan {
termsOfUseUrl = "https://gradle.com/help/legal-terms-of-use"
termsOfUseAgree = "yes"
publishing.onlyIf { false } // Manual only
tag(System.getenv("CI") ? "CI": "Local")
uploadInBackground = System.getenv("CI") == null
}
}
rootProject.name = 'gradle-license-report'