From 5ffd60c6c89302e233fd1e3033f6e5b58e8b1bdf Mon Sep 17 00:00:00 2001 From: Johannes Rudolph Date: Fri, 13 Jul 2012 11:32:23 +0300 Subject: [PATCH] Improve readme instructions. --- README.md | 22 +++++++++------------- 1 file changed, 9 insertions(+), 13 deletions(-) diff --git a/README.md b/README.md index 897b7f990..360050123 100644 --- a/README.md +++ b/README.md @@ -19,24 +19,20 @@ addSbtPlugin("net.virtual-void" % "sbt-dependency-graph" % "0.6.0") *Note*: The organization has recently been changed to `net.virtual-void`. -or, alternatively, in `project/plugins/project/build.scala`: - -```scala -import sbt._ - -object Plugins extends Build { - lazy val root = Project("root", file(".")) dependsOn( - uri("git://github.com/jrudolph/sbt-dependency-graph.git#v0.6.0") // or another tag/branch/revision - ) -} -``` - -Then, add the following in your `build.sbt`: +Then, add the following to your `build.sbt` as a standalone line: ```scala net.virtualvoid.sbt.graph.Plugin.graphSettings ``` +or if you use the full configuration, add + +```scala +.settings(net.virtualvoid.sbt.graph.Plugin.graphSettings: _*) +``` + +to your project definition. + Tasks & Settings ----------------