Reputation:
Is it possible set custom "lib_managed" path in build.sbt? I would want that command update the puts jar files to the my web folder web/WEB-INF/lib. If sbt does not allows setup custom folder(google finds nothing), what i must add to the build.sbt to copy files from lib_managet folder to my web/.../lib folder?
Upvotes: 0
Views: 639
Reputation: 7019
lib_managed
is only a build-local cache and it contains jars for all configurations, such as Test
and Compile
. It is not appropriate to list its contents and use it as a classpath. There may be duplicates or libraries that shouldn't be on the classpath of interest.
Upvotes: 1