How can sbt pull dependency artifacts from git?

You can import unpackaged dependencies into your project from GitHub by treating them as project dependencies, using the dependsOn operator. (This is distinct from the way that precompiled library dependencies are included). Note that you can specify which branch to pull using # notation. Here’s some Scala SBT code that is working well for me: … Read more