Skip to content

Commit 90b8ba7

Browse files
committed
Polishing.
Extract docker credentials into properties file. Use tabs for indentation instead of spaces. See #3949
1 parent f12648a commit 90b8ba7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Jenkinsfile

+3-3
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ pipeline {
7474
}
7575
options { timeout(time: 30, unit: 'MINUTES') }
7676
environment {
77-
ARTIFACTORY = credentials('02bd1690-b54f-4c9f-819d-a77cb7a9822c')
77+
ARTIFACTORY = credentials("${p['artifactory.credentials']}")
7878
}
7979
steps {
8080
script {
@@ -108,7 +108,7 @@ pipeline {
108108
}
109109
options { timeout(time: 30, unit: 'MINUTES') }
110110
environment {
111-
ARTIFACTORY = credentials('02bd1690-b54f-4c9f-819d-a77cb7a9822c')
111+
ARTIFACTORY = credentials("${p['artifactory.credentials']}")
112112
}
113113
steps {
114114
script {
@@ -142,7 +142,7 @@ pipeline {
142142
options { timeout(time: 20, unit: 'MINUTES') }
143143

144144
environment {
145-
ARTIFACTORY = credentials('02bd1690-b54f-4c9f-819d-a77cb7a9822c')
145+
ARTIFACTORY = credentials("${p['artifactory.credentials']}")
146146
}
147147

148148
steps {

0 commit comments

Comments
 (0)