Browse Source

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.
tags/8.3.0.34182
Simon Brandhof 4 years ago
parent
commit
d8316b23db
1 changed files with 4 additions and 0 deletions
  1. 4
    0
      build.gradle

+ 4
- 0
build.gradle View File

@@ -73,6 +73,10 @@ allprojects {
}
}
}

task allDependencies {
dependsOn 'dependencies'
}
}

apply plugin: 'org.sonarqube'

Loading…
Cancel
Save