From f55295faaa507720fc48525d439b032a0b5931cd Mon Sep 17 00:00:00 2001 From: Manuele Simi Date: Thu, 30 May 2019 22:24:52 -0400 Subject: [PATCH] Fix the snapshots' filenames. --- Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 7e5609e..664a0ed 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -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"