From: Eric Hartmann Date: Mon, 28 May 2018 09:13:30 +0000 (+0200) Subject: BUILD-646 Add Editions to ARTIFACTS_TO_PUBLISH X-Git-Tag: 7.5~1038 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=d5576133cbd1b2572a95bd6872b1be5df2ba4853;p=sonarqube.git BUILD-646 Add Editions to ARTIFACTS_TO_PUBLISH --- diff --git a/build.gradle b/build.gradle index bd55e6f901e..82c60eb7077 100644 --- a/build.gradle +++ b/build.gradle @@ -407,7 +407,10 @@ artifactory { clientConfig.info.setBuildName('sonar-enterprise') clientConfig.info.setBuildNumber(System.getenv('BUILD_NUMBER')) // Define the artifacts to be deployed to https://sonarsource.bintray.com on releases - clientConfig.info.addEnvironmentProperty('ARTIFACTS_TO_PUBLISH', "${project.group}:sonar-application:zip,com.sonarsource.governance:sonar-governance-plugin:jar,com.sonarsource.developer:sonar-developer-plugin:jar,com.sonarsource.ha:sonar-ha-plugin:jar,com.sonarsource.branch:sonar-branch-plugin:jar") + clientConfig.info.addEnvironmentProperty('ARTIFACTS_TO_PUBLISH', "${project.group}:sonar-application:zip," + + "com.sonarsource.sonarqube:sonarqube-developer:zip," + + "com.sonarsource.sonarqube:sonarqube-enterprise:zip," + + "com.sonarsource.sonarqube:sonarqube-datacenter:zip") // The name of this variable is important because it's used by the delivery process when extracting version from Artifactory build info. clientConfig.info.addEnvironmentProperty('PROJECT_VERSION', "${version}") }