Skip to content

Commit 266f105

Browse files
committed
Use spring-builds+jenkins for ge.spring.io.
To show the right gravatar, apply the proper user.name property.
1 parent 3ec7f58 commit 266f105

10 files changed

+10
-10
lines changed

Jenkinsfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,7 @@ pipeline {
243243
"-Dartifactory.username=${ARTIFACTORY_USR} " +
244244
"-Dartifactory.password=${ARTIFACTORY_PSW} " +
245245
"-Dartifactory.distribution-repository=temp-private-local " +
246-
'-Dmaven.test.skip=true -Dmaven.deploy.skip=true deploy -B'
246+
'-Duser.name=spring-builds+jenkins -Dmaven.test.skip=true -Dmaven.deploy.skip=true deploy -B'
247247
}
248248
}
249249
}

ci/build-and-deploy-to-artifactory.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export GRADLE_ENTERPRISE_CACHE_PASSWORD=${GRADLE_ENTERPRISE_CACHE_PSW}
99

1010
echo 'Deploying to Artifactory...'
1111

12-
MAVEN_OPTS="-Duser.name=jenkins -Duser.home=/tmp/jenkins-home" ./mvnw \
12+
MAVEN_OPTS="-Duser.name=spring-builds+jenkins -Duser.home=/tmp/jenkins-home" ./mvnw \
1313
-s settings.xml \
1414
-Pjakarta-ee-10,distribute,${RELEASE_TYPE} \
1515
-Dmaven.test.skip=true \

ci/build-and-deploy-to-maven-central.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ export GNUPGHOME
1616
mkdir $GNUPGHOME
1717
cp $KEYRING $GNUPGHOME
1818

19-
MAVEN_OPTS="-Duser.name=jenkins -Duser.home=/tmp/jenkins-home" ./mvnw \
19+
MAVEN_OPTS="-Duser.name=spring-builds+jenkins -Duser.home=/tmp/jenkins-home" ./mvnw \
2020
-s settings.xml \
2121
-Pjakarta-ee-10,distribute,central \
2222
-Dmaven.test.skip=true \

ci/rc-close.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ STAGING_PROFILE_ID=$1
66

77
echo 'Closing remote repository on Maven Central...'
88

9-
MAVEN_OPTS="-Duser.name=jenkins -Duser.home=/tmp/jenkins-home" ./mvnw \
9+
MAVEN_OPTS="-Duser.name=spring-builds+jenkins -Duser.home=/tmp/jenkins-home" ./mvnw \
1010
-s settings.xml \
1111
-Pcentral \
1212
-DstagingRepositoryId=${STAGING_PROFILE_ID} \

ci/rc-open.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ set -euo pipefail
44

55
echo "Opening a remote repository for this release..."
66

7-
MAVEN_OPTS="-Duser.name=jenkins -Duser.home=/tmp/jenkins-home" ./mvnw \
7+
MAVEN_OPTS="-Duser.name=spring-builds+jenkins -Duser.home=/tmp/jenkins-home" ./mvnw \
88
-s settings.xml \
99
-Pcentral \
1010
-DstagingProfileId=${STAGING_PROFILE_ID} \

ci/rc-release.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ STAGING_REPOSITORY_ID=$1
66

77
echo 'Release to Maven central...'
88

9-
MAVEN_OPTS="-Duser.name=jenkins -Duser.home=/tmp/jenkins-home --add-opens=java.base/java.util=ALL-UNNAMED " ./mvnw \
9+
MAVEN_OPTS="-Duser.name=spring-builds+jenkins -Duser.home=/tmp/jenkins-home --add-opens=java.base/java.util=ALL-UNNAMED " ./mvnw \
1010
-s settings.xml \
1111
-Pcentral \
1212
-DstagingRepositoryId="${STAGING_REPOSITORY_ID}" \

ci/smoke-test-against-artifactory.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ echo 'Smoke test against Artifactory...'
88

99
cd smoke-tests
1010

11-
MAVEN_OPTS="-Duser.name=jenkins -Duser.home=/tmp/jenkins-home" ./mvnw \
11+
MAVEN_OPTS="-Duser.name=spring-builds+jenkins -Duser.home=/tmp/jenkins-home" ./mvnw \
1212
-Partifactory \
1313
-Dspring-ws.version="${PROJECT_VERSION}" \
1414
clean dependency:purge-local-repository verify -B -U

ci/smoke-test-against-maven-central.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ echo 'Smoke test against Maven Central...'
99

1010
cd smoke-tests
1111

12-
MAVEN_OPTS="-Duser.name=jenkins -Duser.home=/tmp/jenkins-home" ./mvnw \
12+
MAVEN_OPTS="-Duser.name=spring-builds+jenkins -Duser.home=/tmp/jenkins-home" ./mvnw \
1313
-Pmaven-central \
1414
-DstagingRepositoryId="${STAGING_REPOSITORY_ID}" \
1515
-Dspring-ws.version="${PROJECT_VERSION}" \

ci/test.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@ set -euo pipefail
55
export GRADLE_ENTERPRISE_CACHE_USERNAME=${GRADLE_ENTERPRISE_CACHE_USR}
66
export GRADLE_ENTERPRISE_CACHE_PASSWORD=${GRADLE_ENTERPRISE_CACHE_PSW}
77

8-
MAVEN_OPTS="-Duser.name=jenkins -Duser.home=/tmp/jenkins-home" \
8+
MAVEN_OPTS="-Duser.name=spring-builds+jenkins -Duser.home=/tmp/jenkins-home" \
99
./mvnw -s settings.xml \
1010
-P${PROFILE} clean dependency:list test -Dsort -B -U

ci/version.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
set -euo pipefail
44

5-
VERSION=`MAVEN_OPTS="-Duser.name=jenkins -Duser.home=/tmp/jenkins-home" ./mvnw \
5+
VERSION=`MAVEN_OPTS="-Duser.name=spring-builds+jenkins -Duser.home=/tmp/jenkins-home" ./mvnw \
66
org.apache.maven.plugins:maven-help-plugin:3.4.0:evaluate \
77
-Dexpression=project.version -q -DforceStdout | tail -1`
88

0 commit comments

Comments
 (0)