File tree Expand file tree Collapse file tree 1 file changed +20
-0
lines changed Expand file tree Collapse file tree 1 file changed +20
-0
lines changed Original file line number Diff line number Diff line change @@ -18,6 +18,11 @@ pluginManagement {
18
18
}
19
19
}
20
20
21
+ plugins {
22
+ id " com.gradle.enterprise" version " 3.8.1"
23
+ id " io.spring.ge.conventions" version " 0.0.9"
24
+ }
25
+
21
26
rootProject. name = ' spring-graphql'
22
27
include ' spring-graphql' ,
23
28
' spring-graphql-test' ,
@@ -26,3 +31,18 @@ include 'spring-graphql',
26
31
' samples:webmvc-http-security' ,
27
32
' samples:webflux-security' ,
28
33
' samples:webflux-websocket'
34
+
35
+ settings. gradle. projectsLoaded {
36
+ gradleEnterprise {
37
+ buildScan {
38
+ File buildDir = settings. gradle. rootProject. getBuildDir()
39
+ buildDir. mkdirs()
40
+ new File (buildDir, " build-scan-uri.txt" ). text = " (build scan not generated)"
41
+ buildScanPublished { scan ->
42
+ if (buildDir. exists()) {
43
+ new File (buildDir, " build-scan-uri.txt" ). text = " ${ scan.buildScanUri} \n "
44
+ }
45
+ }
46
+ }
47
+ }
48
+ }
You can’t perform that action at this time.
0 commit comments