aboutsummaryrefslogtreecommitdiffstats
path: root/build.gradle
diff options
context:
space:
mode:
authorSimon Brandhof <simon.brandhof@sonarsource.com>2020-03-18 09:11:15 +0100
committersonartech <sonartech@sonarsource.com>2020-03-21 20:04:03 +0000
commitd8316b23db7544363749cf2e586552162ff1d32a (patch)
treeb124aa08870d9fb2cc89da033e2cf876a43cca2a /build.gradle
parent7af9ac7424d5b973a2ea2f943089a793ae0c1451 (diff)
downloadsonarqube-d8316b23db7544363749cf2e586552162ff1d32a.tar.gz
sonarqube-d8316b23db7544363749cf2e586552162ff1d32a.zip
SONAR-13155 add Gradle command to list all dependency trees
`./gradlew allDependencies` lists the trees of dependencies of all subprojects. This is convenient when investigating the impacts of a dependency upgrade.
Diffstat (limited to 'build.gradle')
-rw-r--r--build.gradle4
1 files changed, 4 insertions, 0 deletions
diff --git a/build.gradle b/build.gradle
index 36b17857d11..0bef8cc596a 100644
--- a/build.gradle
+++ b/build.gradle
@@ -73,6 +73,10 @@ allprojects {
}
}
}
+
+ task allDependencies {
+ dependsOn 'dependencies'
+ }
}
apply plugin: 'org.sonarqube'