mirror of https://github.com/sbt/sbt.git
upgrade documentation + tests to 0.7.4
This commit is contained in:
parent
3325cdb833
commit
a724b92a5d
|
|
@ -9,7 +9,7 @@ How To Use
|
|||
For sbt 0.11/0.12, add sbt-dependency-graph as a dependency in `project/plugins.sbt`:
|
||||
|
||||
```scala
|
||||
addSbtPlugin("net.virtual-void" % "sbt-dependency-graph" % "0.7.3")
|
||||
addSbtPlugin("net.virtual-void" % "sbt-dependency-graph" % "0.7.4")
|
||||
```
|
||||
|
||||
Then, add the following to your `<project-root>/build.sbt` (that's not `project/build.sbt`!) as a standalone line:
|
||||
|
|
@ -70,7 +70,7 @@ Standalone usage
|
|||
|
||||
You can use the project without sbt as well by either depending on the library and calling
|
||||
`IvyGraphMLDependencies.saveAsGraphML(IvyGraphMLDependencies.graph(reportFile), outputFile)` or by just getting the binary
|
||||
and calling it like `scala sbt-dependency-graph-0.7.3.jar <ivy-report-xml-path> <target-path>`.
|
||||
and calling it like `scala sbt-dependency-graph-0.7.4.jar <ivy-report-xml-path> <target-path>`.
|
||||
|
||||
Inner Workings
|
||||
--------------
|
||||
|
|
|
|||
|
|
@ -0,0 +1,29 @@
|
|||
{
|
||||
"organization" : "net.virtual-void",
|
||||
"name" : "sbt-dependency-graph",
|
||||
"version" : "0.7.4",
|
||||
"description" : "An sbt plugin to visualize dependencies of your build.",
|
||||
"site" : "http://github.com/jrudolph/sbt-dependency-graph",
|
||||
"tags" : [ "dependency", "graph", "sbt-plugin", "sbt" ],
|
||||
"docs" : "http://github.com/jrudolph/sbt-dependency-graph",
|
||||
"resolvers" : [ "https://oss.sonatype.org/content/repositories/releases" ],
|
||||
"dependencies" : [ {
|
||||
"organization" : "org.scala-sbt",
|
||||
"name" : "scripted-sbt",
|
||||
"version" : "0.12.1"
|
||||
}, {
|
||||
"organization" : "org.scala-sbt",
|
||||
"name" : "sbt-launch",
|
||||
"version" : "0.12.1"
|
||||
}, {
|
||||
"organization" : "com.github.mdr",
|
||||
"name" : "ascii-graphs",
|
||||
"version" : "0.0.2"
|
||||
} ],
|
||||
"scalas" : [ "2.9.2" ],
|
||||
"licenses" : [ {
|
||||
"name" : "Apache License 2.0",
|
||||
"url" : "https://github.com/jrudolph/sbt-dependency-graph/raw/master/LICENSE"
|
||||
} ],
|
||||
"sbt" : true
|
||||
}
|
||||
|
|
@ -1 +1 @@
|
|||
addSbtPlugin("net.virtual-void" % "sbt-dependency-graph" % "0.7.3-SNAPSHOT")
|
||||
addSbtPlugin("net.virtual-void" % "sbt-dependency-graph" % "0.7.4")
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
addSbtPlugin("net.virtual-void" % "sbt-dependency-graph" % "0.7.3-SNAPSHOT")
|
||||
addSbtPlugin("net.virtual-void" % "sbt-dependency-graph" % "0.7.4")
|
||||
|
|
|
|||
Loading…
Reference in New Issue