]> source.dussan.org Git - sonarqube.git/commitdiff
BUILD-646 Add Editions to ARTIFACTS_TO_PUBLISH
authorEric Hartmann <hartmann.eric@gmail.com>
Mon, 28 May 2018 09:13:30 +0000 (11:13 +0200)
committerSonarTech <sonartech@sonarsource.com>
Tue, 12 Jun 2018 18:20:58 +0000 (20:20 +0200)
build.gradle

index bd55e6f901ebd58e93ce6bf07d8d0c6c330f9ffa..82c60eb70770278d929b99af323c09bd8d47690a 100644 (file)
@@ -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}")
 }