Skip to content

Commit

Permalink
Fix wrong maven command call (apache#3638)
Browse files Browse the repository at this point in the history
  • Loading branch information
rodrigonull authored Aug 26, 2024
1 parent bb84d1a commit 382b35e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .ci/jenkins/Jenkinsfile.deploy
Original file line number Diff line number Diff line change
Expand Up @@ -154,10 +154,10 @@ pipeline {
}
if (isRelease()) {
releaseUtils.gpgImportKeyFromStringWithoutPassword(getReleaseGpgSignKeyCredsId())
mavenCommand.withProfiles(['apache-release'])
mvnCmd.withProfiles(['apache-release'])
}
configFileProvider([configFile(fileId: env.MAVEN_SETTINGS_CONFIG_FILE_ID, variable: 'MAVEN_SETTINGS_FILE')]) {
mavenCommand.withSettingsXmlFile(MAVEN_SETTINGS_FILE)
mvnCmd.withSettingsXmlFile(MAVEN_SETTINGS_FILE)
.run("clean $installOrDeploy")
}
}
Expand Down

0 comments on commit 382b35e

Please sign in to comment.