Skip to content

Instantly share code, notes, and snippets.

@edofic
Created February 24, 2013 20:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save edofic/5025556 to your computer and use it in GitHub Desktop.
Save edofic/5025556 to your computer and use it in GitHub Desktop.
whoa you can depend on git projects from sbt just put this in project/ and `sbt console`
import sbt._
import Keys._
object DemoBuild extends Build {
val macros = RootProject(uri("git://github.com/edofic/reactive-macros"))
val main = Project("main", file(".")).settings(
scalaVersion := "2.10.0"
) dependsOn macros
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment