I have a sbt 0.10.0 project that expresses several dependencies somewhat:
object MyBuild extends Build {
val commonDeps = Seq("commons-httpclient" % "commons-httpclient" % "3.1",
"commons-lang" % "commons-lang" % "2.6")
val buildSettings = Defaults.defaultSettings ++ Seq ( organization := "org" )
lazy val proj = Project("proj", file("src"),
settings = buildSettings ++ Seq(
name := "projname",
libraryDependencies := commonDeps, ...)
...
}
I want to create a build rule to collect all jar dependencies on "proj" so that I can symbolically bind them to a single directory.
Thank.
source
share