Browse Source

Polishing.

Externalize artifactory credentials identifier.

See #3976
3.2.x
Mark Paluch 4 years ago
parent
commit
137a6ae310
No known key found for this signature in database
GPG Key ID: 4406B84C1661DCD1
  1. 8
      Jenkinsfile

8
Jenkinsfile vendored

@ -90,7 +90,7 @@ pipeline { @@ -90,7 +90,7 @@ pipeline {
}
options { timeout(time: 30, unit: 'MINUTES') }
environment {
ARTIFACTORY = credentials('02bd1690-b54f-4c9f-819d-a77cb7a9822c')
ARTIFACTORY = credentials("${p['artifactory.credentials']}")
}
steps {
script {
@ -122,7 +122,7 @@ pipeline { @@ -122,7 +122,7 @@ pipeline {
}
options { timeout(time: 30, unit: 'MINUTES') }
environment {
ARTIFACTORY = credentials('02bd1690-b54f-4c9f-819d-a77cb7a9822c')
ARTIFACTORY = credentials("${p['artifactory.credentials']}")
}
steps {
script {
@ -146,7 +146,7 @@ pipeline { @@ -146,7 +146,7 @@ pipeline {
}
options { timeout(time: 30, unit: 'MINUTES') }
environment {
ARTIFACTORY = credentials('02bd1690-b54f-4c9f-819d-a77cb7a9822c')
ARTIFACTORY = credentials("${p['artifactory.credentials']}")
}
steps {
script {
@ -179,7 +179,7 @@ pipeline { @@ -179,7 +179,7 @@ pipeline {
options { timeout(time: 20, unit: 'MINUTES') }
environment {
ARTIFACTORY = credentials('02bd1690-b54f-4c9f-819d-a77cb7a9822c')
ARTIFACTORY = credentials("${p['artifactory.credentials']}")
}
steps {

Loading…
Cancel
Save