My project has dependency on an external jar. I have created a directory lib and have copied the jar file into it. This is my build.sbt:
lib
build.sbt
Add this line your build.sbt and clean & compile your project.
project/libs, where project is the root directory of your project, put your jars in libs folder.
unmanagedBase <<= baseDirectory { base => base / "libs" }