File tree Expand file tree Collapse file tree 9 files changed +85
-4
lines changed
spring-boot-starters/.mvn
spring-boot-samples-invoker Expand file tree Collapse file tree 9 files changed +85
-4
lines changed Original file line number Diff line number Diff line change @@ -38,3 +38,4 @@ transaction-logs
38
38
secrets.yml
39
39
.gradletasknamecache
40
40
.sts4-cache
41
+ .mvn /.gradle-enterprise /gradle-enterprise-workspace-id
Original file line number Diff line number Diff line change
1
+ <extensions >
2
+ <extension >
3
+ <groupId >com.gradle</groupId >
4
+ <artifactId >gradle-enterprise-maven-extension</artifactId >
5
+ <version >1.5.3</version >
6
+ </extension >
7
+ <extension >
8
+ <groupId >io.spring.ge.conventions</groupId >
9
+ <artifactId >gradle-enterprise-conventions-maven-extension</artifactId >
10
+ <version >0.0.5</version >
11
+ </extension >
12
+ </extensions >
Original file line number Diff line number Diff line change
1
+ <gradleEnterprise
2
+ xmlns =" https://www.gradle.com/gradle-enterprise-maven" xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
3
+ xsi : schemaLocation =" https://www.gradle.com/gradle-enterprise-maven https://www.gradle.com/schema/gradle-enterprise-maven.xsd" >
4
+ <server >
5
+ <url >https://ge.spring.io</url >
6
+ </server >
7
+ <buildScan >
8
+ <publishIfAuthenticated >true</publishIfAuthenticated >
9
+ </buildScan >
10
+ <buildCache >
11
+ <local >
12
+ <enabled >true</enabled >
13
+ </local >
14
+ <remote >
15
+ <enabled >true</enabled >
16
+ <storeEnabled ><![CDATA[ #{env['GRADLE_ENTERPRISE_CACHE_USERNAME'] != null && env['GRADLE_ENTERPRISE_CACHE_USERNAME'] != null}]]> </storeEnabled >
17
+ <server >
18
+ <credentials >
19
+ <username >${env.GRADLE_ENTERPRISE_CACHE_USERNAME}</username >
20
+ <password >${env.GRADLE_ENTERPRISE_CACHE_PASSWORD}</password >
21
+ </credentials >
22
+ </server >
23
+ </remote >
24
+ </buildCache >
25
+ </gradleEnterprise >
Original file line number Diff line number Diff line change @@ -35,10 +35,10 @@ git add pom.xml > /dev/null
35
35
git commit -m" Release v$stageVersion " > /dev/null
36
36
git tag -a " v$stageVersion " -m" Release v$stageVersion " > /dev/null
37
37
38
- run_maven -f spring-boot-project/pom.xml clean deploy -U -Dfull -DaltDeploymentRepository=distribution::default::file://${repository}
39
- run_maven -f spring-boot-samples/pom.xml clean install -U -Dfull -Drepository=file://${repository}
40
- run_maven -f spring-boot-tests/spring-boot-integration-tests/pom.xml clean install -U -Dfull -Drepository=file://${repository}
41
- run_maven -f spring-boot-tests/spring-boot-deployment-tests/pom.xml clean install -U -Dfull -Drepository=file://${repository}
38
+ run_maven -f spring-boot-project/pom.xml clean deploy -U -Dfull -DaltDeploymentRepository=distribution::default::file://${repository} -Dgradle.cache.local.enabled=false -Dgradle.cache.remote.enabled=false
39
+ run_maven -f spring-boot-samples/pom.xml clean install -U -Dfull -Drepository=file://${repository} -Dgradle.cache.local.enabled=false -Dgradle.cache.remote.enabled=false
40
+ run_maven -f spring-boot-tests/spring-boot-integration-tests/pom.xml clean install -U -Dfull -Drepository=file://${repository} -Dgradle.cache.local.enabled=false -Dgradle.cache.remote.enabled=false
41
+ run_maven -f spring-boot-tests/spring-boot-deployment-tests/pom.xml clean install -U -Dfull -Drepository=file://${repository} -Dgradle.cache.local.enabled=false -Dgradle.cache.remote.enabled=false
42
42
43
43
git reset --hard HEAD^ > /dev/null
44
44
if [[ $nextVersion != $snapshotVersion ]]; then
Original file line number Diff line number Diff line change 250
250
</plugin >
251
251
</plugins >
252
252
</pluginManagement >
253
+ <plugins >
254
+ <plugin >
255
+ <groupId >com.gradle</groupId >
256
+ <artifactId >gradle-enterprise-maven-extension</artifactId >
257
+ <version >1.5.2</version >
258
+ <configuration >
259
+ <gradleEnterprise >
260
+ <plugins >
261
+ <plugin >
262
+ <artifactId >maven-checkstyle-plugin</artifactId >
263
+ <inputs >
264
+ <fileSets >
265
+ <fileSet >
266
+ <name >allowlist</name >
267
+ <paths >
268
+ <path >${main.basedir} /src/checkstyle</path >
269
+ </paths >
270
+ <normalization >RELATIVE_PATH</normalization >
271
+ </fileSet >
272
+ </fileSets >
273
+ <properties >
274
+ <property >
275
+ <name >propertyExpansion</name >
276
+ <value >ignoredValue</value >
277
+ </property >
278
+ </properties >
279
+ </inputs >
280
+ </plugin >
281
+ </plugins >
282
+ </gradleEnterprise >
283
+ </configuration >
284
+ </plugin >
285
+ </plugins >
253
286
</build >
254
287
</project >
Original file line number Diff line number Diff line change
1
+ This file is empty so that the starters project does not generate multiple build scans.
Original file line number Diff line number Diff line change 88
88
<addTestClassPath >true</addTestClassPath >
89
89
<skipInvocation >${skipTests} </skipInvocation >
90
90
<streamLogs >true</streamLogs >
91
+ <properties >
92
+ <scan >false</scan >
93
+ </properties >
91
94
</configuration >
92
95
</execution >
93
96
</executions >
Original file line number Diff line number Diff line change 153
153
<addTestClassPath >true</addTestClassPath >
154
154
<skipInvocation >${skipTests} </skipInvocation >
155
155
<streamLogs >true</streamLogs >
156
+ <properties >
157
+ <scan >false</scan >
158
+ </properties >
156
159
</configuration >
157
160
</execution >
158
161
</executions >
Original file line number Diff line number Diff line change 29
29
<pomIncludes >
30
30
<pomInclude >pom.xml</pomInclude >
31
31
</pomIncludes >
32
+ <properties >
33
+ <scan >false</scan >
34
+ </properties >
32
35
</configuration >
33
36
<executions >
34
37
<execution >
You can’t perform that action at this time.
0 commit comments