Skip to content

Instantly share code, notes, and snippets.

@nlinker
Forked from eed3si9n/build.sbt
Created August 5, 2016 13:59
Show Gist options
  • Save nlinker/518ff00f7adaca97aaccc0f39ed4c1bf to your computer and use it in GitHub Desktop.
Save nlinker/518ff00f7adaca97aaccc0f39ed4c1bf to your computer and use it in GitHub Desktop.
Source dependency
lazy val scalaJson = ProjectRef(uri("git://github.com/mdedetrich/scala-json-ast.git#c5ee84"), "scalaJsonASTJVM")
lazy val root = (project in file(".")).
dependsOn(scalaJson).
settings(inThisBuild(List(
organization := "com.example",
scalaVersion := "2.11.8"
)),
name := "sourceDeps"
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment