Skip to content

Instantly share code, notes, and snippets.

@bmc
Created March 27, 2012 20:05
Show Gist options
  • Select an option

  • Save bmc/2219779 to your computer and use it in GitHub Desktop.

Select an option

Save bmc/2219779 to your computer and use it in GitHub Desktop.
sbt-lwm in Build.scala
import sbt._
import Keys._
import org.clapper.sbt.lwm.LWM._
object TestBuild extends Build {
override lazy val projects = Seq(root)
lazy val root = Project(
"root", file(".")
).settings (LWM.settings : _*).settings(
LWM.targetDirectory in LWM.Config <<= baseDirectory(_ / "target2")
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment