Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Equivalent of mvn dependency:tree in Grails

Tags:

maven

grails

ivy

I am trying to find out some dependencies added to a grails plugin that I am using in my grails project. Is there any equivalent of maven command mvn dependency:tree in Grails/Ivy

like image 948
Dhanush Gopinath Avatar asked Feb 10 '12 11:02

Dhanush Gopinath


People also ask

What is mvn dependency tree?

A project's dependency tree can be filtered to locate specific dependencies. For example, to find out why Velocity is being used by the Maven Dependency Plugin, we can execute the following in the project's directory: mvn dependency:tree -Dincludes=velocity:velocity.

How do I find my mvn dependency tree?

How to get the Maven Dependency Tree of a Project. We can run mvn dependency:tree command in the terminal to print the project dependency tree. For our example, I will be using the Mockito Tutorial project. You can download the project from the GitHub repository.


1 Answers

How about grails dependency-report (docs)

like image 189
Peter Svensson Avatar answered Sep 30 '22 17:09

Peter Svensson