Fix the snapshots' filenames.
This commit is contained in:
parent
b0356f4cb4
commit
f55295faaa
|
@ -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"
|
||||
|
|
Loading…
Reference in New Issue