diff options
author | Julien HENRY <julien.henry@sonarsource.com> | 2024-07-16 11:00:36 +0200 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2024-08-27 20:02:40 +0000 |
commit | 90793a92b3f35c97db4a563e965e7225b163c327 (patch) | |
tree | ecbcd35ed8bc4589d5f39ee01d74197f551bbe46 /sonar-scanner-protocol | |
parent | 605597f442d03a1af49039aa330975ccb00459a3 (diff) | |
download | sonarqube-90793a92b3f35c97db4a563e965e7225b163c327.tar.gz sonarqube-90793a92b3f35c97db4a563e965e7225b163c327.zip |
SONAR-19710 Update the build to Gradle 8.9
Diffstat (limited to 'sonar-scanner-protocol')
-rw-r--r-- | sonar-scanner-protocol/build.gradle | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sonar-scanner-protocol/build.gradle b/sonar-scanner-protocol/build.gradle index ab20b8484d5..f0c1546a5d7 100644 --- a/sonar-scanner-protocol/build.gradle +++ b/sonar-scanner-protocol/build.gradle @@ -26,6 +26,7 @@ task fatJar(type: Jar) { attributes 'Main-Class': 'org.sonar.scanner.protocol.viewer.ScannerReportViewerApp' } archiveBaseName = project.name + '-all' + dependsOn configurations.runtimeClasspath from { configurations.runtimeClasspath.collect { it.isDirectory() ? it : zipTree(it) } } with jar duplicatesStrategy = DuplicatesStrategy.EXCLUDE |