Scala SBT UI Managed Path

Is it possible to set my own lib_managed path in the build.sbt file? I would like this command to update jar files to my web folder web / WEB-INF / lib. If sbt does not allow you to configure a user folder (google does not detect anything), what should I add to build.sbt to copy files from the lib_managet folder to my web /.../ lib folder?

0
source share
1 answer

lib_managed is only a built-in cache, and it contains banks for all configurations such as Test and Compile . It is incorrect to list its contents and use it as a class path. There may be duplicates or libraries that should not be in the class of interest.

+2
source

All Articles