From 197cdc3b558cbad675572e2ce0005b0062c84940 Mon Sep 17 00:00:00 2001 From: Simon Brandhof Date: Mon, 4 Jun 2018 16:05:38 +0200 Subject: [PATCH] SONAR-10687 split editions --- build.gradle | 3 ++- sonar-application/build.gradle | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/build.gradle b/build.gradle index 1884843ad26..73db298cb64 100644 --- a/build.gradle +++ b/build.gradle @@ -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}") } diff --git a/sonar-application/build.gradle b/sonar-application/build.gradle index 72a6ce05136..cd3c0bdb954 100644 --- a/sonar-application/build.gradle +++ b/sonar-application/build.gradle @@ -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" -- 2.39.5