Bläddra i källkod

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 år sedan
förälder
incheckning
d8316b23db
1 ändrade filer med 4 tillägg och 0 borttagningar
  1. 4
    0
      build.gradle

+ 4
- 0
build.gradle Visa fil

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

task allDependencies {
dependsOn 'dependencies'
}
}

apply plugin: 'org.sonarqube'

Laddar…
Avbryt
Spara