use new organization

This commit is contained in:
Johannes Rudolph 2012-02-13 11:26:14 +01:00
parent 37fe81565e
commit 5bce725bdf
3 changed files with 6 additions and 4 deletions

View File

@ -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
)
}
```

View File

@ -2,7 +2,7 @@ sbtPlugin := true
name := "sbt-dependency-graph"
organization := "net.virtualvoid"
organization := "net.virtual-void"
version := "0.5.2"

View File

@ -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.",