Fix the snapshots' filenames.

This commit is contained in:
Manuele Simi 2019-05-30 22:24:52 -04:00
parent b0356f4cb4
commit f55295faaa
1 changed files with 2 additions and 2 deletions

4
Jenkinsfile vendored
View File

@ -8,13 +8,13 @@ if (params.Type == 'SNAPSHOT-DRY-RUN') {
echo "Configure Maven for SNAPSHOT-DRY-RUN artifacts"
options = ''
maven_local_repo_path = "${agent_root_folder}/local-snapshots"
maven_settings_file = "${agent_root_folder}/.m2/jenkins-shapshots-dry-run-settings.xml"
maven_settings_file = "${agent_root_folder}/.m2/jenkins-snapshots-dry-run-settings.xml"
}
if (params.Type == 'SNAPSHOT') {
echo "Configure Maven for SNAPSHOT artifacts"
options = ''
maven_local_repo_path = "${agent_root_folder}/local-snapshots"
maven_settings_file = "${agent_root_folder}/.m2/jenkins-shapshots-settings.xml"
maven_settings_file = "${agent_root_folder}/.m2/jenkins-snapshots-settings.xml"
}
if (params.Type == 'RELEASE-DRY-RUN') {
echo "Configure Maven for RELEASE-DRY-RUN artifacts"