use specific hashes for source-plugins test for reliability

This commit is contained in:
Mark Harrah 2013-08-08 21:24:18 -04:00
parent 5f2b5d4ad4
commit 41933b4e31
1 changed files with 2 additions and 2 deletions

View File

@ -2,6 +2,6 @@ import sbt._
object PluginDef extends Build {
override def projects = Seq(root)
lazy val root = Project("plugins", file(".")) dependsOn(proguard, git)
lazy val proguard = uri("git://github.com/sbt/sbt-proguard.git")
lazy val git = uri("git://github.com/sbt/sbt-git.git#master")
lazy val proguard = uri("git://github.com/sbt/sbt-proguard.git#e7b4732969c137db1b5")
lazy val git = uri("git://github.com/sbt/sbt-git.git#2e7c2503850698d60bb")
}