Skip to content

Commit 05572e4

Browse files
authored
Fix missing Gradle report
1 parent 2d7739d commit 05572e4

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

settings.gradle

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,15 @@
1+
plugins {
2+
id "com.gradle.enterprise" version "3.13.4"
3+
}
4+
5+
gradleEnterprise {
6+
if (System.getenv("CI") != null) {
7+
buildScan {
8+
publishAlways()
9+
termsOfServiceUrl = "https://gradle.com/terms-of-service"
10+
termsOfServiceAgree = "yes"
11+
}
12+
}
13+
}
14+
115
rootProject.name = 'spring-boot-tutorials'

0 commit comments

Comments
 (0)