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

纵然是瞬间 提交于 2019-12-05 20:22:40

问题


There is part of the output:

output of gradle dependencies

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


回答1:


+, -, | 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.



来源:https://stackoverflow.com/questions/39136789/how-to-understand-the-output-of-command-gradle-dependencies

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!