We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 610cfdd commit 953e56aCopy full SHA for 953e56a
gradle.properties
@@ -1,3 +1,5 @@
1
+org.gradle.dependency.verification=lenient
2
+
3
org.gradle.welcome=never
4
org.gradle.warning.mode=none
5
org.gradle.parallel=true
settings.gradle
@@ -17,6 +17,7 @@ pluginManagement {
17
}
18
19
plugins {
20
+ id 'com.gradle.enterprise' version '3.13.1'
21
id "com.gradle.develocity" version "3.17.4"
22
id 'elasticsearch.java-toolchain'
23
@@ -177,3 +178,14 @@ if (extraProjects.exists()) {
177
178
addSubProjects('', extraProjectDir)
179
180
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