diff options
author | Kengo TODA <skypencil@gmail.com> | 2021-09-30 19:07:41 +0800 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2021-10-08 20:03:10 +0000 |
commit | ac63a87fff684c5c4eb3b0a2562526e2643378be (patch) | |
tree | ff609812b352f1ab823ffae0881ee0acc21f38ca /sonar-application | |
parent | d0b6b0f341c297ad06a96508d13597b00dd214a6 (diff) | |
download | sonarqube-ac63a87fff684c5c4eb3b0a2562526e2643378be.tar.gz sonarqube-ac63a87fff684c5c4eb3b0a2562526e2643378be.zip |
SONAR-15470 Do not declare Gradle build dependencies using compile and runtime configurations
Diffstat (limited to 'sonar-application')
-rw-r--r-- | sonar-application/build.gradle | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sonar-application/build.gradle b/sonar-application/build.gradle index 70ddc8bb2a3..d9ec42c1f1d 100644 --- a/sonar-application/build.gradle +++ b/sonar-application/build.gradle @@ -90,7 +90,7 @@ task downloadElasticSearch(type: Download) { finalizedBy verifyElasticSearchDownload } -task zip(type: Zip, dependsOn: [configurations.compile, downloadElasticSearch, verifyElasticSearchDownload]) { +task zip(type: Zip, dependsOn: [configurations.compileClasspath, downloadElasticSearch, verifyElasticSearchDownload]) { duplicatesStrategy DuplicatesStrategy.EXCLUDE def archiveDir = "sonarqube-$project.version" |