mirror of https://github.com/sbt/sbt.git
use new organization
This commit is contained in:
parent
37fe81565e
commit
5bce725bdf
|
|
@ -14,9 +14,11 @@ How To Use
|
|||
For sbt 0.11, add sbt-dependency-graph as a dependency in `project/plugins.sbt`:
|
||||
|
||||
```scala
|
||||
addSbtPlugin("net.virtualvoid" % "sbt-dependency-graph" % "0.5.2")
|
||||
addSbtPlugin("net.virtual-void" % "sbt-dependency-graph" % "0.5.2")
|
||||
```
|
||||
|
||||
*Note*: The organization has recently been changed to `net.virtual-void`.
|
||||
|
||||
or, alternatively, in `project/plugins/project/build.scala`:
|
||||
|
||||
```scala
|
||||
|
|
@ -24,7 +26,7 @@ import sbt._
|
|||
|
||||
object Plugins extends Build {
|
||||
lazy val root = Project("root", file(".")) dependsOn(
|
||||
uri("git://github.com/jrudolph/sbt-dependency-graph.git#v0.5.1") // or another tag/branch/revision
|
||||
uri("git://github.com/jrudolph/sbt-dependency-graph.git#v0.5.2") // or another tag/branch/revision
|
||||
)
|
||||
}
|
||||
```
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ sbtPlugin := true
|
|||
|
||||
name := "sbt-dependency-graph"
|
||||
|
||||
organization := "net.virtualvoid"
|
||||
organization := "net.virtual-void"
|
||||
|
||||
version := "0.5.2"
|
||||
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
|
||||
{
|
||||
"organization":"net.virtualvoid",
|
||||
"organization":"net.virtual-void",
|
||||
"name":"sbt-dependency-graph",
|
||||
"version":"0.5.2",
|
||||
"description":"An sbt plugin which allows to create a graphml file from the dependencies of the project.",
|
||||
|
|
|
|||
Loading…
Reference in New Issue