Skip to content

Instantly share code, notes, and snippets.

@myedibleenso
Created February 29, 2016 22:27
Show Gist options
  • Save myedibleenso/dfad9997c722f801562b to your computer and use it in GitHub Desktop.
Save myedibleenso/dfad9997c722f801562b to your computer and use it in GitHub Desktop.
an example of how to include a sbt dependency that is hosted on github
// save to project/Build.scala
import sbt.{Build, Project, ProjectRef, uri}
object MyBuild extends Build {
lazy val root = Project("root", sbt.file(".")).dependsOn(procAgiga)
lazy val procAgiga = ProjectRef(uri("git://github.com/myedibleenso/processors-agiga.git#master"), "processors-agiga")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment