Skip to content

Commit f2b2a88

Browse files
committed
Authenticate against artifactory.
See #2328.
1 parent 90bc7a6 commit f2b2a88

File tree

3 files changed

+36
-8
lines changed

3 files changed

+36
-8
lines changed

Jenkinsfile

+7-3
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ pipeline {
1616
when {
1717
anyOf {
1818
branch '2.2.x'
19+
1920
not { triggeredBy 'UpstreamCause' }
2021
}
2122
}
@@ -29,9 +30,12 @@ pipeline {
2930
}
3031
}
3132
options { timeout(time: 30, unit: 'MINUTES') }
33+
environment {
34+
ARTIFACTORY = credentials('02bd1690-b54f-4c9f-819d-a77cb7a9822c')
35+
}
3236
steps {
3337
sh 'rm -rf ?'
34-
sh 'MAVEN_OPTS="-Duser.name=jenkins -Duser.home=/tmp/jenkins-home" ./mvnw clean dependency:list verify -Dsort -U -B'
38+
sh 'MAVEN_OPTS="-Duser.name=jenkins -Duser.home=/tmp/jenkins-home" ./mvnw -s settings.xml clean dependency:list verify -Dsort -U -B'
3539
}
3640
}
3741
}
@@ -58,7 +62,7 @@ pipeline {
5862

5963
steps {
6064
sh 'rm -rf ?'
61-
sh 'MAVEN_OPTS="-Duser.name=jenkins -Duser.home=/tmp/jenkins-home" ./mvnw -Pci,artifactory ' +
65+
sh 'MAVEN_OPTS="-Duser.name=jenkins -Duser.home=/tmp/jenkins-home" ./mvnw -s settings.xml -Pci,artifactory ' +
6266
'-Dartifactory.server=https://repo.spring.io ' +
6367
"-Dartifactory.username=${ARTIFACTORY_USR} " +
6468
"-Dartifactory.password=${ARTIFACTORY_PSW} " +
@@ -86,7 +90,7 @@ pipeline {
8690
}
8791

8892
steps {
89-
sh 'MAVEN_OPTS="-Duser.name=jenkins -Duser.home=/tmp/jenkins-home" ./mvnw -Pci,distribute ' +
93+
sh 'MAVEN_OPTS="-Duser.name=jenkins -Duser.home=/tmp/jenkins-home" ./mvnw -s settings.xml -Pci,distribute ' +
9094
'-Dartifactory.server=https://repo.spring.io ' +
9195
"-Dartifactory.username=${ARTIFACTORY_USR} " +
9296
"-Dartifactory.password=${ARTIFACTORY_PSW} " +

pom.xml

-5
Original file line numberDiff line numberDiff line change
@@ -381,11 +381,6 @@
381381
<id>spring-plugins-release</id>
382382
<url>https://repo.spring.io/plugins-release</url>
383383
</pluginRepository>
384-
<pluginRepository>
385-
<id>bintray-plugins</id>
386-
<name>bintray-plugins</name>
387-
<url>https://jcenter.bintray.com</url>
388-
</pluginRepository>
389384
</pluginRepositories>
390385

391386
</project>

settings.xml

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
2+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0
4+
https://maven.apache.org/xsd/settings-1.0.0.xsd">
5+
6+
<servers>
7+
<server>
8+
<id>spring-plugins-release</id>
9+
<username>${env.ARTIFACTORY_USR}</username>
10+
<password>${env.ARTIFACTORY_PSW}</password>
11+
</server>
12+
<server>
13+
<id>spring-libs-snapshot</id>
14+
<username>${env.ARTIFACTORY_USR}</username>
15+
<password>${env.ARTIFACTORY_PSW}</password>
16+
</server>
17+
<server>
18+
<id>spring-libs-milestone</id>
19+
<username>${env.ARTIFACTORY_USR}</username>
20+
<password>${env.ARTIFACTORY_PSW}</password>
21+
</server>
22+
<server>
23+
<id>spring-libs-release</id>
24+
<username>${env.ARTIFACTORY_USR}</username>
25+
<password>${env.ARTIFACTORY_PSW}</password>
26+
</server>
27+
</servers>
28+
29+
</settings>

0 commit comments

Comments
 (0)