Created
February 17, 2013 19:04
-
-
Save stephanos/4972857 to your computer and use it in GitHub Desktop.
This file contains 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._ | |
object HelloBuild extends Build { | |
lazy val root = Project(id = "hello", | |
base = file("."), | |
settings = Project.defaultSettings ++ Seq(compileInputs in doc in Compile ~= (x => x.copy(config = x.config.copy(sources = List()))))) | |
} |
This file contains 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
object Main extends App { | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment