Created
November 13, 2012 07:37
-
-
Save xconnecting/4064504 to your computer and use it in GitHub Desktop.
Gradle: collect depenentjars into a directory in the project
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
apply plugin: 'java' | |
apply plugin: 'eclipse' | |
apply plugin: 'maven' | |
dependencies { compile 'commons-lang:commons-lang:2.6' } | |
repositories { | |
mavenCentral() | |
} | |
task copyLib(type: Copy){ | |
from configurations.compile | |
into 'lib' | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment