Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Gradle list dependencies without omit

Tags:

gradle

I would like to get the dependencies for an project without omitting dependency that have been listed before in the dependency tree.

This is an example of an omitted dependency:

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

I have looked at DependencyReportTask without finding any info.

I temporarily solved this by doing the following:

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

Although I would still like to be able to change this by configuration.

like image 316
ki_ Avatar asked Nov 13 '13 12:11

ki_


1 Answers

What you are asking for isn't currently possible. You are welcome to submit this as an "idea" over at http://forums.gradle.org (please explain your motivation).

like image 135
Peter Niederwieser Avatar answered Sep 28 '22 05:09

Peter Niederwieser