Skip to content

Commit 1a860bf

Browse files
erichaagdevschauder
authored andcommitted
Migrate build to Spring Develocity Conventions extension.
Also adopt Develocity environment variables. Original pull request #1847
1 parent ec3c708 commit 1a860bf

8 files changed

+4
-62
lines changed

.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ target/
1010
*.sonar4clipseExternals
1111
*.graphml
1212
package-lock.json
13-
.mvn/.gradle-enterprise
13+
.mvn/.develocity
1414

1515
build/
1616
node_modules

.mvn/extensions.xml

+3-8
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,8 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<extensions>
33
<extension>
4-
<groupId>com.gradle</groupId>
5-
<artifactId>gradle-enterprise-maven-extension</artifactId>
6-
<version>1.19.2</version>
7-
</extension>
8-
<extension>
9-
<groupId>com.gradle</groupId>
10-
<artifactId>common-custom-user-data-maven-extension</artifactId>
11-
<version>1.12.4</version>
4+
<groupId>io.spring.develocity.conventions</groupId>
5+
<artifactId>develocity-conventions-maven-extension</artifactId>
6+
<version>0.0.19</version>
127
</extension>
138
</extensions>

.mvn/gradle-enterprise.xml

-31
This file was deleted.

Jenkinsfile

-6
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@ pipeline {
3333

3434
environment {
3535
ARTIFACTORY = credentials("${p['artifactory.credentials']}")
36-
DEVELOCITY_CACHE = credentials("${p['develocity.cache.credentials']}")
3736
DEVELOCITY_ACCESS_KEY = credentials("${p['develocity.access-key']}")
3837
TESTCONTAINERS_IMAGE_SUBSTITUTOR = 'org.springframework.data.ProxyImageNameSubstitutor'
3938
}
@@ -66,7 +65,6 @@ pipeline {
6665
options { timeout(time: 30, unit: 'MINUTES') }
6766
environment {
6867
ARTIFACTORY = credentials("${p['artifactory.credentials']}")
69-
DEVELOCITY_CACHE = credentials("${p['develocity.cache.credentials']}")
7068
DEVELOCITY_ACCESS_KEY = credentials("${p['develocity.access-key']}")
7169
TESTCONTAINERS_IMAGE_SUBSTITUTOR = 'org.springframework.data.ProxyImageNameSubstitutor'
7270
}
@@ -98,17 +96,13 @@ pipeline {
9896
options { timeout(time: 20, unit: 'MINUTES') }
9997
environment {
10098
ARTIFACTORY = credentials("${p['artifactory.credentials']}")
101-
DEVELOCITY_CACHE = credentials("${p['develocity.cache.credentials']}")
10299
DEVELOCITY_ACCESS_KEY = credentials("${p['develocity.access-key']}")
103100
}
104101
steps {
105102
script {
106103
docker.withRegistry(p['docker.proxy.registry'], p['docker.proxy.credentials']) {
107104
docker.image(p['docker.java.main.image']).inside(p['docker.java.inside.basic']) {
108105
sh 'MAVEN_OPTS="-Duser.name=' + "${p['jenkins.user.name']}" + ' -Duser.home=/tmp/jenkins-home" ' +
109-
"DEVELOCITY_CACHE_USERNAME=${DEVELOCITY_CACHE_USR} " +
110-
"DEVELOCITY_CACHE_PASSWORD=${DEVELOCITY_CACHE_PSW} " +
111-
"GRADLE_ENTERPRISE_ACCESS_KEY=${DEVELOCITY_ACCESS_KEY} " +
112106
"./mvnw -s settings.xml -Pci,artifactory " +
113107
"-Dartifactory.server=${p['artifactory.url']} " +
114108
"-Dartifactory.username=${ARTIFACTORY_USR} " +

ci/clean.sh

-5
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,7 @@
22

33
set -euo pipefail
44

5-
export DEVELOCITY_CACHE_USERNAME=${DEVELOCITY_CACHE_USR}
6-
export DEVELOCITY_CACHE_PASSWORD=${DEVELOCITY_CACHE_PSW}
75
export JENKINS_USER=${JENKINS_USER_NAME}
86

9-
# The environment variable to configure access key is still GRADLE_ENTERPRISE_ACCESS_KEY
10-
export GRADLE_ENTERPRISE_ACCESS_KEY=${DEVELOCITY_ACCESS_KEY}
11-
127
MAVEN_OPTS="-Duser.name=${JENKINS_USER} -Duser.home=/tmp/jenkins-home" \
138
./mvnw -s settings.xml -Dscan=false clean -Dmaven.repo.local=/tmp/jenkins-home/.m2/spring-data-jdbc

ci/pipeline.properties

-1
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,5 @@ docker.proxy.credentials=usw1_packages_broadcom_com-jenkins-token
3131
artifactory.credentials=02bd1690-b54f-4c9f-819d-a77cb7a9822c
3232
artifactory.url=https://repo.spring.io
3333
artifactory.repository.snapshot=libs-snapshot-local
34-
develocity.cache.credentials=gradle_enterprise_cache_user
3534
develocity.access-key=gradle_enterprise_secret_access_key
3635
jenkins.user.name=spring-builds+jenkins

ci/run-tests-against-all-dbs.sh

-5
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,6 @@
11
#!/bin/sh
22

3-
export DEVELOCITY_CACHE_USERNAME=${DEVELOCITY_CACHE_USR}
4-
export DEVELOCITY_CACHE_PASSWORD=${DEVELOCITY_CACHE_PSW}
53
export JENKINS_USER=${JENKINS_USER_NAME}
64

7-
# The environment variable to configure access key is still GRADLE_ENTERPRISE_ACCESS_KEY
8-
export GRADLE_ENTERPRISE_ACCESS_KEY=${DEVELOCITY_ACCESS_KEY}
9-
105
MAVEN_OPTS="-Duser.name=${JENKINS_USER} -Duser.home=/tmp/jenkins-home" \
116
./mvnw -s settings.xml clean install -Pall-dbs

ci/test.sh

-5
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,8 @@ cp spring-data-relational/src/test/java/org/springframework/data/ProxyImageNameS
1111
mkdir -p /tmp/jenkins-home
1212
chown -R 1001:1001 .
1313

14-
export DEVELOCITY_CACHE_USERNAME=${DEVELOCITY_CACHE_USR}
15-
export DEVELOCITY_CACHE_PASSWORD=${DEVELOCITY_CACHE_PSW}
1614
export JENKINS_USER=${JENKINS_USER_NAME}
1715

18-
# The environment variable to configure access key is still GRADLE_ENTERPRISE_ACCESS_KEY
19-
export GRADLE_ENTERPRISE_ACCESS_KEY=${DEVELOCITY_ACCESS_KEY}
20-
2116
MAVEN_OPTS="-Duser.name=${JENKINS_USER} -Duser.home=/tmp/jenkins-home" \
2217
./mvnw -s settings.xml \
2318
-P${PROFILE} clean dependency:list verify -Dsort -U -B -Dmaven.repo.local=/tmp/jenkins-home/.m2/spring-data-jdbc

0 commit comments

Comments
 (0)