diff options
author | Simon Brandhof <simon.brandhof@sonarsource.com> | 2018-06-14 17:21:04 +0200 |
---|---|---|
committer | SonarTech <sonartech@sonarsource.com> | 2018-06-14 20:20:53 +0200 |
commit | 414fe2a8042189263c5d1d29adabff5076c600fc (patch) | |
tree | 517b267870eabc18f01fcb3da79e626210a996c6 /build.gradle | |
parent | 86f3d45c3743abf9853fe44cadc185fc97c19b5d (diff) | |
download | sonarqube-414fe2a8042189263c5d1d29adabff5076c600fc.tar.gz sonarqube-414fe2a8042189263c5d1d29adabff5076c600fc.zip |
Consistent groupId for private modules
Diffstat (limited to 'build.gradle')
-rw-r--r-- | build.gradle | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/build.gradle b/build.gradle index 20e61061ff7..bfc559928bd 100644 --- a/build.gradle +++ b/build.gradle @@ -414,8 +414,9 @@ artifactory { 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:sonarcloud:zip") + "com.sonarsource.sonarqube:sonarqube-enterprise: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('ARTIFACTS_TO_DOWNLOAD', 'com.sonarsource.sonarqube:sonarcloud:zip') + // Define additional artifacts to display on BURGR clientConfig.info.addEnvironmentProperty('PROJECT_VERSION', "${version}") } |