aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-ws-generator/build.gradle
diff options
context:
space:
mode:
authorKengo TODA <skypencil@gmail.com>2021-09-11 19:27:25 +0800
committersonartech <sonartech@sonarsource.com>2021-10-08 20:03:10 +0000
commitd0b6b0f341c297ad06a96508d13597b00dd214a6 (patch)
tree2b3e431224b063cf4d7079ff63e4dcf3d0a70087 /sonar-ws-generator/build.gradle
parent6847a3b6f9b05ac53c32b628a5875f70ca0cfa15 (diff)
downloadsonarqube-d0b6b0f341c297ad06a96508d13597b00dd214a6.tar.gz
sonarqube-d0b6b0f341c297ad06a96508d13597b00dd214a6.zip
SONAR-15469 Stop using deprecated Gradle API in SonarQube
Diffstat (limited to 'sonar-ws-generator/build.gradle')
-rw-r--r--sonar-ws-generator/build.gradle2
1 files changed, 1 insertions, 1 deletions
diff --git a/sonar-ws-generator/build.gradle b/sonar-ws-generator/build.gradle
index e872e414c79..902dcf153d0 100644
--- a/sonar-ws-generator/build.gradle
+++ b/sonar-ws-generator/build.gradle
@@ -22,7 +22,7 @@ task fatJar(type: Jar) {
manifest {
attributes 'Main-Class': 'org.sonarqube.wsgenerator.Generator'
}
- classifier = 'jar-with-dependencies'
+ archiveClassifier = 'jar-with-dependencies'
from { configurations.compile.collect { it.isDirectory() ? it : zipTree(it) } }
with jar
}