Created
March 27, 2012 20:05
-
-
Save bmc/2219779 to your computer and use it in GitHub Desktop.
sbt-lwm in Build.scala
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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