diff --git a/README.md b/README.md index e4542c5e8..58b313c28 100644 --- a/README.md +++ b/README.md @@ -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 ) } ``` diff --git a/project.sbt b/project.sbt index f712ceb01..f000b7925 100644 --- a/project.sbt +++ b/project.sbt @@ -2,7 +2,7 @@ sbtPlugin := true name := "sbt-dependency-graph" -organization := "net.virtualvoid" +organization := "net.virtual-void" version := "0.5.2" diff --git a/src/main/ls/0.5.2.json b/src/main/ls/0.5.2.json index 895322b6a..53582b5a0 100644 --- a/src/main/ls/0.5.2.json +++ b/src/main/ls/0.5.2.json @@ -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.",