Skip to content

Instantly share code, notes, and snippets.

@stephanos
Created February 17, 2013 19:04
Show Gist options
  • Save stephanos/4972857 to your computer and use it in GitHub Desktop.
Save stephanos/4972857 to your computer and use it in GitHub Desktop.
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())))))
}
object Main extends App {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment