Skip to content

Commit 953e56a

Browse files
committed
always run Gradle with --scan
1 parent 610cfdd commit 953e56a

File tree

2 files changed

+14
-0
lines changed

2 files changed

+14
-0
lines changed

gradle.properties

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
org.gradle.dependency.verification=lenient
2+
13
org.gradle.welcome=never
24
org.gradle.warning.mode=none
35
org.gradle.parallel=true

settings.gradle

+12
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ pluginManagement {
1717
}
1818

1919
plugins {
20+
id 'com.gradle.enterprise' version '3.13.1'
2021
id "com.gradle.develocity" version "3.17.4"
2122
id 'elasticsearch.java-toolchain'
2223
}
@@ -177,3 +178,14 @@ if (extraProjects.exists()) {
177178
addSubProjects('', extraProjectDir)
178179
}
179180
}
181+
182+
gradleEnterprise {
183+
buildScan {
184+
// Accept the terms of service automatically
185+
termsOfServiceUrl = 'https://gradle.com/terms-of-service'
186+
termsOfServiceAgree = 'yes'
187+
188+
// Always publish a build scan without requiring --scan
189+
publishAlways()
190+
}
191+
}

0 commit comments

Comments
 (0)