File tree 2 files changed +23
-1
lines changed
2 files changed +23
-1
lines changed Original file line number Diff line number Diff line change @@ -4,3 +4,5 @@ nativeBuildToolsVersion=0.9.13
4
4
jlineVersion =3.21.0
5
5
st4Version =4.3.1
6
6
jimfsVersion =1.2
7
+ gradleEnterpriseVersion =3.10.3
8
+ springGeConventionsVersion =0.0.11
Original file line number Diff line number Diff line change 1
1
pluginManagement {
2
2
repositories {
3
- maven { url ' https://repo.spring.io/plugins-release' }
4
3
mavenCentral()
5
4
gradlePluginPortal()
6
5
maven { url ' https://repo.spring.io/release' }
@@ -14,11 +13,32 @@ pluginManagement {
14
13
plugins {
15
14
id ' org.springframework.boot' version " $springBootVersion "
16
15
id ' org.graalvm.buildtools.native' version " $nativeBuildToolsVersion "
16
+ id ' com.gradle.enterprise' version " $gradleEnterpriseVersion "
17
+ id ' io.spring.ge.conventions' version " $springGeConventionsVersion "
17
18
}
18
19
}
19
20
21
+ plugins {
22
+ id " com.gradle.enterprise"
23
+ id " io.spring.ge.conventions"
24
+ }
25
+
20
26
rootProject. name = ' spring-shell'
21
27
28
+ settings. gradle. projectsLoaded {
29
+ gradleEnterprise {
30
+ buildScan {
31
+ def buildDir = settings. gradle. rootProject. getBuildDir()
32
+ buildDir. mkdirs()
33
+ new File (buildDir, " build-scan-uri.txt" ). text = " build scan not generated"
34
+ buildScanPublished { scan ->
35
+ buildDir. mkdirs()
36
+ new File (buildDir, " build-scan-uri.txt" ). text = " <${ scan.buildScanUri} |build scan>\n "
37
+ }
38
+ }
39
+ }
40
+ }
41
+
22
42
include ' spring-shell-autoconfigure'
23
43
include ' spring-shell-core'
24
44
include ' spring-shell-core-test-support'
You can’t perform that action at this time.
0 commit comments