From 56fecee3419276934ef48f249eedfc1a86173452 Mon Sep 17 00:00:00 2001 From: Rodrigo Antunes Date: Thu, 3 Oct 2024 11:11:58 -0300 Subject: [PATCH] [10.0.x] Remove productized property from release build command (#3127) * Add productized maven property to the optaplanner-quickstarts build command in the release job * Remove productized property from release build command --------- Co-authored-by: Rodrigo Antunes --- .ci/jenkins/Jenkinsfile.deploy | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.ci/jenkins/Jenkinsfile.deploy b/.ci/jenkins/Jenkinsfile.deploy index b4245b4e8a4..854766ca685 100644 --- a/.ci/jenkins/Jenkinsfile.deploy +++ b/.ci/jenkins/Jenkinsfile.deploy @@ -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')]) {