]> source.dussan.org Git - sonarqube.git/commitdiff
SONAR-10687 split editions
authorSimon Brandhof <simon.brandhof@sonarsource.com>
Mon, 4 Jun 2018 14:05:38 +0000 (16:05 +0200)
committerSonarTech <sonartech@sonarsource.com>
Tue, 12 Jun 2018 18:21:02 +0000 (20:21 +0200)
build.gradle
sonar-application/build.gradle

index 1884843ad269810026062168defa94f48a81be54..73db298cb641068af4e7dc8c01f5642ddc7b05be 100644 (file)
@@ -409,8 +409,9 @@ artifactory {
   // 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.sonarqube:sonarqube-developer:zip," +
+      "com.sonarsource.sonarqube:sonarqube-datacenter:zip," +
       "com.sonarsource.sonarqube:sonarqube-enterprise:zip," +
-      "com.sonarsource.sonarqube:sonarqube-datacenter:zip")
+      "com.sonarsource.sonarqube:sonarcloud: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}")
 }
index 72a6ce0513616b4557453cdabc9aa2f106566a1a..cd3c0bdb954721cbbf51cbbf8c017ae64d16d659 100644 (file)
@@ -74,7 +74,7 @@ jar {
   }
 }
 
-task zip(type: Zip) {
+task zip(type: Zip, dependsOn: [configurations.ce, configurations.scanner, configurations.server]) {
   duplicatesStrategy DuplicatesStrategy.EXCLUDE
   def archiveDir = "sonarqube-$version"