From 43c6006f4e3ea3d675ee058fc1584d896cd735bd Mon Sep 17 00:00:00 2001 From: Johannes Rudolph Date: Tue, 29 Nov 2011 15:23:41 +0100 Subject: [PATCH] add ls metadata --- build.sbt | 14 ++++++++++++++ project/plugins.sbt | 7 +++++++ src/main/ls/0.5.1.json | 18 ++++++++++++++++++ 3 files changed, 39 insertions(+) create mode 100644 project/plugins.sbt create mode 100644 src/main/ls/0.5.1.json diff --git a/build.sbt b/build.sbt index b0606d69d..2c6afbbc0 100644 --- a/build.sbt +++ b/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." + diff --git a/project/plugins.sbt b/project/plugins.sbt new file mode 100644 index 000000000..3a55a6480 --- /dev/null +++ b/project/plugins.sbt @@ -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") diff --git a/src/main/ls/0.5.1.json b/src/main/ls/0.5.1.json new file mode 100644 index 000000000..80a39a08d --- /dev/null +++ b/src/main/ls/0.5.1.json @@ -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 +} \ No newline at end of file