Skip to content

Instantly share code, notes, and snippets.

@bqcuong
Created April 13, 2020 09:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bqcuong/a26dd4b5859723e7d95a520dc9845bb1 to your computer and use it in GitHub Desktop.
Save bqcuong/a26dd4b5859723e7d95a520dc9845bb1 to your computer and use it in GitHub Desktop.
Gradle copy dependencies
task copyToLib(type: Copy) {
from configurations.testCompile.allArtifacts.files
from configurations.testCompile
into "$buildDir/dependency-libs"
}
@bqcuong
Copy link
Author

bqcuong commented Jul 28, 2020

gradle :capsule:copyToLib

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment