Skip to content

Instantly share code, notes, and snippets.

@igorpopovio
Created May 6, 2014 13:31
Show Gist options
  • Save igorpopovio/6cc68766682139019951 to your computer and use it in GitHub Desktop.
Save igorpopovio/6cc68766682139019951 to your computer and use it in GitHub Desktop.
List all files (including transitive stuff) for a specific dependency.
repositories { mavenCentral() }
configurations { libs }
dependencies { libs 'org.hibernate:hibernate-core:4.3.5.Final' }
configurations.libs.dependencies.each { dependency ->
def myFiles = configurations.libs.files dependency
myFiles.each { println it }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment