For normal configuration dependencies, you can use the dependencies
or dependencyInsight
tasks to figure out what Gradle is resolving for each in the builds.
However, I haven’t figured out a way to do it in the buildscript. For example, supposing I have this code:
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:1.3.+'
}
}
How do I find out what version com.android.tools.build:gradle
is being used?