Skip to content

Instantly share code, notes, and snippets.

@ghale
Created October 6, 2015 13:54
Show Gist options
  • Save ghale/88f849b22b855bc952c1 to your computer and use it in GitHub Desktop.
Save ghale/88f849b22b855bc952c1 to your computer and use it in GitHub Desktop.
ext.printDep = { dep, indent ->
println "${indent}${dep.moduleGroup}${dep.moduleName}${dep.moduleVersion}"
dep.children.each { child ->
printDep(child, "${indent} ")
}
}
task showBuildScriptDependencies {
doLast {
buildscript.configurations.classpath.resolvedConfiguration.firstLevelModuleDependencies.each { dep ->
printDep(dep, "")
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment