Skip to content

Commit

Permalink
Remove productized property from release build command
Browse files Browse the repository at this point in the history
  • Loading branch information
Rodrigo Antunes committed Oct 3, 2024
1 parent f8d5890 commit 3d2af36
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions .ci/jenkins/Jenkinsfile.deploy
Original file line number Diff line number Diff line change
Expand Up @@ -146,9 +146,7 @@ pipeline {

if (isRelease()) {
releaseUtils.gpgImportKeyFromStringWithoutPassword(getReleaseGpgSignKeyCredsId())
mavenCommand
.withProfiles(['apache-release'])
.withProperty('productized')
mavenCommand.withProfiles(['apache-release'])
}

configFileProvider([configFile(fileId: env.MAVEN_SETTINGS_CONFIG_FILE_ID, variable: 'MAVEN_SETTINGS_FILE')]) {
Expand Down Expand Up @@ -181,7 +179,6 @@ pipeline {
.withSettingsXmlFile(MAVEN_SETTINGS_FILE)
.withProperty('apache.repository.username', REPOSITORY_USER)
.withProperty('apache.repository.password', REPOSITORY_TOKEN)
.withProperty('productized')
.run('clean install')
}
}
Expand Down

0 comments on commit 3d2af36

Please sign in to comment.