Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there an easy way to copy all jar dependencies to a certain directory in XSBT 0.11.2?

Tags:

When switching from one of the older versions of SBT to the latest version, we lost our ability to quickly grab all jar dependencies and copy them to a directory. Is there an easy way to do the same in XSBT 0.11.2?

like image 343
Wilfred Springer Avatar asked Mar 01 '12 15:03

Wilfred Springer


1 Answers

Adding the following to your build.sbt copies all the dependencies into a lib_managed folder in the root of your project.

retrieveManaged := true

Is that what you're asking for?

like image 178
dhg Avatar answered Oct 09 '22 00:10

dhg