Skip to content

Instantly share code, notes, and snippets.

@idletekz
Last active January 26, 2018 16:56
Show Gist options
  • Save idletekz/dfeaa8ab6107b3682dba63782c7218c8 to your computer and use it in GitHub Desktop.
Save idletekz/dfeaa8ab6107b3682dba63782c7218c8 to your computer and use it in GitHub Desktop.
project.configurations.compile.resolvedConfiguration.resolvedArtifacts.each {
println it.name // << the artifact name
println it.file // << the file reference
}
project.configurations.compile.each { println it.name }
subprojects {
task allDeps(type: DependencyReportTask) {}
}
gradle allDeps
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment