https://kotlinlang.org logo
Title
b

bjonnh

02/01/2019, 11:08 PM
how do I know which dependency installs another dependency?
✔️ 2
c

cristiangm

02/01/2019, 11:11 PM
./gradlew dependencies
👌 1
b

bjonnh

02/01/2019, 11:12 PM
works perfectly thx
n

Nikky

02/02/2019, 12:15 AM
and you can also look into the gradle sidebar: SourceSets > main > Dependencies

https://i.imgur.com/5huDLBb.png

👍 1
t

trevjones

02/02/2019, 2:07 AM
Dependency insight or a Gradle scan is easier if you are trying to find out why a module is installed.
👍 3
c

Czar

02/02/2019, 11:12 AM
:dependencyInsight
task is also pretty amazing.
For open projects gradle build scan is invaluable, usually doesn't work for corporate closed projects though, because scan result is kinda public while gradle enterprise costs an arm and a leg.
t

trevjones

02/03/2019, 9:07 PM
if you have not done a gradle enterprise demo I super recommend it. you run it for a month and then look at an ROI based on real data from your org. my project included some offshore devs so the ROI was a projected 150%, but if I looked at just the US based team it was like 600%
c

Czar

02/03/2019, 9:09 PM
We did, gradle team was super helpful by the way, but unfortunately for our use case cost was not justifiable.