So, I have a project written in Scala for Spark. The current sbt file looks like this.
name := "MyProgram"
version := "1.0"
scalaVersion := "2.10.4"
libraryDependencies += "org.apache.spark" %% "spark-core" % "1.1.0"
Say, I want to use external java libraries, and all those libraries are in a directory lib. How should I modify the sbt file to include those libraries?
build.sbt.