Skip to content

Instantly share code, notes, and snippets.

@mark-vieira
Last active November 8, 2017 20:04
Show Gist options
  • Save mark-vieira/70c2d7139e24095cf3688b95e4b95811 to your computer and use it in GitHub Desktop.
Save mark-vieira/70c2d7139e24095cf3688b95e4b95811 to your computer and use it in GitHub Desktop.
Download maven deps to folder
repositories {
jcenter()
}
configurations {
jars
}
dependencies {
jars 'junit:junit:4.12'
}
task downloadJars(type: Copy) {
from { configurations.jars.resolvedConfiguration.lenientConfiguration.files }
into 'some/folder'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment