Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to understand the output of command 'gradle dependencies'?

There is part of the output:

output of gradle dependencies

What does the symbols ('+','\','->','()','(*)') exactly mean?

like image 992
Jeffrey.L Avatar asked Aug 25 '16 04:08

Jeffrey.L


1 Answers

+, -, | and \ are just used to draw the tree - it's a kind of ASCII art.

When it comes to (*) and -> please refer to this question and answer.

tl;dr

(*) - is used to indicate that particular dependency is described somewhere else in the tree

-> - is used to point the dependency that wins in version conflict.

like image 76
Opal Avatar answered Oct 29 '22 16:10

Opal