added missing profile name in deploy stage

This commit is contained in:
Sebastian Sdorra
2020-05-26 13:18:59 +02:00
parent de13c90d7d
commit a8a7bfb33c

2
Jenkinsfile vendored
View File

@@ -136,7 +136,7 @@ node('docker') {
// deploy packages
withGPGEnvironment {
mvn "-Dgpg.scm.keyring='${GPG_KEYRING}' -Dgpg.scm.key='${GPG_KEY_ID}' -Dgpg.scm.passphrase='${GPG_KEY_PASSPHRASE}' -P -rf :scm-packaging deploy"
mvn "-Dgpg.scm.keyring='${GPG_KEYRING}' -Dgpg.scm.key='${GPG_KEY_ID}' -Dgpg.scm.passphrase='${GPG_KEY_PASSPHRASE}' -Ppackaging -rf :scm-packaging deploy"
}
}