Last active
January 26, 2018 16:56
-
-
Save idletekz/dfeaa8ab6107b3682dba63782c7218c8 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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