Port project/source-plugins

This commit is contained in:
Eugene Yokota 2016-03-28 19:15:00 -04:00
parent f66e350e8c
commit 06fa0c079e
2 changed files with 5 additions and 9 deletions

View File

@ -0,0 +1,5 @@
lazy val proguard = uri("git://github.com/sbt/sbt-proguard.git#e7b4732969c137db1b5")
lazy val git = uri("git://github.com/sbt/sbt-git.git#2e7c2503850698d60bb")
lazy val root = (project in file(".")).
dependsOn(proguard, git)

View File

@ -1,9 +0,0 @@
import sbt._
import Import._
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#e7b4732969c137db1b5")
lazy val git = uri("git://github.com/sbt/sbt-git.git#2e7c2503850698d60bb")
}