Gradle list dependencies without dropping

I would like to get the dependencies for the project, without omitting the dependencies that were indicated earlier in the dependency tree.

This is an example of a missing dependency:

org.springframework:spring-beans:3.1.1.RELEASE (*)
(*) - dependencies omitted (listed previously)

I looked at DependencyReportTask without finding any information.

I temporarily solved this by doing the following:

https://github.com/ki82/gradle/commit/d0ac3f6a523759a037a7848c8b8695c3ad15a7d6

Although I would still like to change this by configuration.

+4
source share
1 answer

What you are asking is currently not possible. You can present this as an β€œidea” at http://forums.gradle.org (please explain your motivation).

+2

All Articles