Kimble wrote:
Getting Gradle to build the jar file with correct entries in the mainifest
was easy sailing. I've defined a quite some dependencies and I don't want to
hand pick them out of .gradle/cache.
How do I get Gradle to gather my dependencies in a lib folder or something?
I can't possible be the first person with this problem.


You can do something like:

task libs << {
   copy {
       from configurations.runtime
       into new File(buildDir, 'lib')
   }
}


Adam


---------------------------------------------------------------------
To unsubscribe from this list, please visit:

   http://xircles.codehaus.org/manage_email


Reply via email to