diff options
author | Simon Brandhof <simon.brandhof@sonarsource.com> | 2018-06-19 12:28:16 +0200 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2018-06-19 18:34:42 +0200 |
commit | beebd6be35f06fd712d7a2f6d80c5f411af78612 (patch) | |
tree | 82204b1e18c7b9e114b40ce68c19222d879846d4 /server/sonar-db-migration/build.gradle | |
parent | 3ba09d3fb4328ee12b68c33b1b9a16824cb04a25 (diff) | |
download | sonarqube-beebd6be35f06fd712d7a2f6d80c5f411af78612.tar.gz sonarqube-beebd6be35f06fd712d7a2f6d80c5f411af78612.zip |
Do not deploy the artifacts used only internally
Diffstat (limited to 'server/sonar-db-migration/build.gradle')
-rw-r--r-- | server/sonar-db-migration/build.gradle | 17 |
1 files changed, 1 insertions, 16 deletions
diff --git a/server/sonar-db-migration/build.gradle b/server/sonar-db-migration/build.gradle index 53e5be5a48c..91ab0460623 100644 --- a/server/sonar-db-migration/build.gradle +++ b/server/sonar-db-migration/build.gradle @@ -30,20 +30,5 @@ dependencies { } test { - systemProperty 'orchestrator.configUrl', System.getProperty('orchestrator.configUrl') -} - -artifactoryPublish.skip = false - -// Used by core plugins -publishing { - publications { - mavenJava(MavenPublication) { - from components.java - if (release) { - artifact sourcesJar - artifact javadocJar - } - } - } + systemProperty 'orchestrator.configUrl', System.getProperty('orchestrator.configUrl') } |