No jira: specify release repo for master non release builds.

pull/1601/head
Alex Sheppard 2020-06-16 07:55:35 +01:00
parent 1c3b5d385c
commit fec4e9e811
1 changed files with 1 additions and 1 deletions

2
Jenkinsfile vendored
View File

@ -73,7 +73,7 @@ pipeline {
steps {
timeout(time: 10, unit: 'MINUTES') {
withMaven(options: [junitPublisher(disabled: true)]) {
sh "mvn -B -V -U -T4 clean deploy -DaltSnapshotDeploymentRepository=snapshots::default::https://nexus.greshamtech.com/repository/thirdparty-maven-snapshots/"
sh "mvn -B -V -U -T4 clean deploy -DaltSnapshotDeploymentRepository=snapshots::default::https://nexus.greshamtech.com/repository/thirdparty-maven-snapshots/ -DaltReleaseDeploymentRepository=releases::default::https://nexus.greshamtech.com/repository/thirdparty-maven-releases/"
}
}
}