@@ -16,6 +16,7 @@ pipeline {
16
16
when {
17
17
anyOf {
18
18
branch ' 2.2.x'
19
+
19
20
not { triggeredBy ' UpstreamCause' }
20
21
}
21
22
}
@@ -29,9 +30,12 @@ pipeline {
29
30
}
30
31
}
31
32
options { timeout(time : 30 , unit : ' MINUTES' ) }
33
+ environment {
34
+ ARTIFACTORY = credentials(' 02bd1690-b54f-4c9f-819d-a77cb7a9822c' )
35
+ }
32
36
steps {
33
37
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'
35
39
}
36
40
}
37
41
}
@@ -58,7 +62,7 @@ pipeline {
58
62
59
63
steps {
60
64
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 ' +
62
66
' -Dartifactory.server=https://repo.spring.io ' +
63
67
" -Dartifactory.username=${ ARTIFACTORY_USR} " +
64
68
" -Dartifactory.password=${ ARTIFACTORY_PSW} " +
@@ -86,7 +90,7 @@ pipeline {
86
90
}
87
91
88
92
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 ' +
90
94
' -Dartifactory.server=https://repo.spring.io ' +
91
95
" -Dartifactory.username=${ ARTIFACTORY_USR} " +
92
96
" -Dartifactory.password=${ ARTIFACTORY_PSW} " +
0 commit comments