mirror of https://github.com/sbt/sbt.git
add ls metadata
This commit is contained in:
parent
7fbfd7aa8e
commit
43c6006f4e
14
build.sbt
14
build.sbt
|
|
@ -1,3 +1,5 @@
|
|||
seq(lsSettings :_*)
|
||||
|
||||
sbtPlugin := true
|
||||
|
||||
version := "0.5.1"
|
||||
|
|
@ -5,3 +7,15 @@ version := "0.5.1"
|
|||
name := "sbt-dependency-graph"
|
||||
|
||||
organization := "net.virtualvoid"
|
||||
|
||||
homepage := Some(url("http://github.com/jrudolph/sbt-dependency-graph"))
|
||||
|
||||
licenses in GlobalScope += "Apache License 2.0" -> url("https://github.com/jrudolph/sbt-dependency-graph/raw/master/LICENSE")
|
||||
|
||||
(LsKeys.tags in LsKeys.lsync) := Seq("dependency", "graph", "sbt-plugin", "sbt")
|
||||
|
||||
(LsKeys.docsUrl in LsKeys.lsync) <<= homepage
|
||||
|
||||
(description in LsKeys.lsync) :=
|
||||
"An sbt plugin which allows to create a graphml file from the dependencies of the project."
|
||||
|
||||
|
|
|
|||
|
|
@ -0,0 +1,7 @@
|
|||
|
||||
|
||||
resolvers ++= Seq(
|
||||
"less is" at "http://repo.lessis.me",
|
||||
"coda" at "http://repo.codahale.com")
|
||||
|
||||
addSbtPlugin("me.lessis" % "ls-sbt" % "0.1.0")
|
||||
|
|
@ -0,0 +1,18 @@
|
|||
|
||||
{
|
||||
"organization":"net.virtualvoid",
|
||||
"name":"sbt-dependency-graph",
|
||||
"version":"0.5.1",
|
||||
"description":"An sbt plugin which allows to create a graphml file from the dependencies of the project.",
|
||||
"site":"http://github.com/jrudolph/sbt-dependency-graph",
|
||||
"tags":["dependency","graph","sbt-plugin","sbt"],
|
||||
"docs":"http://github.com/jrudolph/sbt-dependency-graph",
|
||||
"licenses": [{
|
||||
"name": "Apache License 2.0",
|
||||
"url": "https://github.com/jrudolph/sbt-dependency-graph/raw/master/LICENSE"
|
||||
}],
|
||||
"resolvers": ["http://scala-tools.org/repo-releases"],
|
||||
"dependencies": [],
|
||||
"scalas": ["2.9.1"],
|
||||
"sbt": true
|
||||
}
|
||||
Loading…
Reference in New Issue