In gradle - how can I embed jars inside my build output jar in the lib directory (specifially the lib/enttoolkit.jar and lib/mail.jar)?
|
Lifted verbatim from: http://docs.codehaus.org/display/GRADLE/Cookbook#Cookbook-Creatingafatjar Gradle 0.9:
Gradle 0.8:
The above snippets will only include the compile dependencies for that project, not any transitive runtime dependencies. If you also want to merge those, replace configurations.compile with configurations.runtime. EDIT: only choosing jars you need Make a new configuration, releaseJars maybe
Add the jars you want to that configuration
then use that configuration in the jar task outlined above. |
|||||||||
|
|
I also needed to do something similar and wasn't quite able to get what Guus and stigkj suggested working, but got close enough with their help to get this working (Guus' example blew up on the
Then running
|
|||
|
|
|
simple:
run it:
|
|||
|
|
|
I needed to the same thing you asked, and used this method. you may not need a custom configuration declaration, but i needed to separate the locally used jar files from those declared in a super-build file.
|
|||
|
|
|
If you have alle the jars inside a directory (lets call it
I guess it is more likely that these jars are dependencies of some sort. Then you would do like this:
|
|||
|
|
