mirror of https://github.com/sbt/sbt.git
Merge pull request #6948 from xuwei-k/enable-source-plugins-test
This commit is contained in:
commit
80984dbef2
|
|
@ -2,6 +2,6 @@ name := "source-plugins"
|
|||
|
||||
organization := "org.example"
|
||||
|
||||
proguardSettings
|
||||
enablePlugins(SbtProguard)
|
||||
|
||||
useJGit
|
||||
|
|
|
|||
|
|
@ -1,5 +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 proguard = RootProject(uri("https://github.com/sbt/sbt-proguard.git#95b27788a5b00ab89e8ae7c05ef5bfe538129280"))
|
||||
lazy val git = RootProject(uri("https://github.com/sbt/sbt-git.git#a81a110af1c5693cd3fd0204248f5c529a43a112"))
|
||||
|
||||
lazy val root = (project in file(".")).
|
||||
dependsOn(proguard, git)
|
||||
|
|
|
|||
|
|
@ -1,7 +0,0 @@
|
|||
lazy val plugins = (project in file("."))
|
||||
.dependsOn(proguard, git)
|
||||
|
||||
// e7b4732969c137db1b5
|
||||
// d4974f7362bf55d3f52
|
||||
lazy val proguard = uri("git://github.com/sbt/sbt-proguard.git#e7b4732969c137db1b5")
|
||||
lazy val git = uri("git://github.com/sbt/sbt-git.git#2e7c2503850698d60bb")
|
||||
Loading…
Reference in New Issue