I\'m new to sbt. I want it to put all the dependency jar files as well as my jar file into one place. SBT will run the app, but I\'ve got various dependencies s
jar
Add the following line to your build.sbt file.
build.sbt
retrieveManaged := true
This will gather the dependencies locally