Explorar el Código

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 hace 4 años
padre
commit
d8316b23db
Se han modificado 1 ficheros con 4 adiciones y 0 borrados
  1. 4
    0
      build.gradle

+ 4
- 0
build.gradle Ver fichero

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

task allDependencies {
dependsOn 'dependencies'
}
}

apply plugin: 'org.sonarqube'

Cargando…
Cancelar
Guardar