Skip to content

Commit

Permalink
reenable ls and gen version info
Browse files Browse the repository at this point in the history
  • Loading branch information
softprops committed Jun 12, 2012
1 parent 59eb8d4 commit a82cfe0
Show file tree
Hide file tree
Showing 3 changed files with 38 additions and 5 deletions.
33 changes: 33 additions & 0 deletions plugin/src/main/ls/0.1.2.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
{
"organization" : "me.lessis",
"name" : "ls-sbt",
"version" : "0.1.2",
"description" : "An sbt interface for ls.implicit.ly",
"site" : "http://ls.implicit.ly/",
"tags" : [ "ls", "plugin", "sbt" ],
"docs" : "http://ls.implicit.ly/#publishing",
"resolvers" : [ "http://repo.codahale.com" ],
"dependencies" : [ {
"organization" : "me.lessis",
"name" : "pj",
"version" : "0.1.0"
}, {
"organization" : "net.liftweb",
"name" : "lift-json_2.9.1",
"version" : "2.4"
}, {
"organization" : "me.lessis",
"name" : "ls",
"version" : "0.1.2"
}, {
"organization" : "org.scala-sbt",
"name" : "scripted-sbt",
"version" : "0.12.0-RC1"
} ],
"scalas" : [ "2.9.2" ],
"licenses" : [ {
"name" : "MIT",
"url" : "https://github.com/softprops/ls/blob/0.1.2/LICENSE"
} ],
"sbt" : true
}
8 changes: 4 additions & 4 deletions project/build.scala
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import sbt._
import Keys._

object Build extends sbt.Build {
//import ls.Plugin._
import ls.Plugin._

object Resolvers {
val coda = "coda" at "http://repo.codahale.com"
Expand Down Expand Up @@ -63,13 +63,13 @@ object Build extends sbt.Build {
publishTo := Some(Classpaths.sbtPluginReleases),
publishMavenStyle := false,
description := "An sbt interface for ls.implicit.ly"
) ++ ScriptedPlugin.scriptedSettings /* ++ lsSettings ++ Seq(
) ++ ScriptedPlugin.scriptedSettings ++ lsSettings ++ Seq(
LsKeys.tags in LsKeys.lsync := Seq("ls", "plugin", "sbt"),
externalResolvers in LsKeys.lsync := Seq(
"coda" at "http://repo.codahale.com"
),
LsKeys.docsUrl in LsKeys.lsync := Some(url("http://ls.implicit.ly/#publishing")),
)*/)// dependsOn(lib)
LsKeys.docsUrl in LsKeys.lsync := Some(url("http://ls.implicit.ly/#publishing"))
))// dependsOn(lib)

lazy val app = Project("app", file("app"),
settings = buildSettings ++
Expand Down
2 changes: 1 addition & 1 deletion project/plugins.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ resolvers ++= Seq(
//Resolver.url("sbt-plugin-releases", new URL("http://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-releases/"))(Resolver.ivyStylePatterns)
)

//addSbtPlugin("me.lessis" % "ls-sbt" % "0.1.1")
addSbtPlugin("me.lessis" % "ls-sbt" % "0.1.2")

//addSbtPlugin("net.databinder" % "conscript-plugin" % "0.3.3")

Expand Down

0 comments on commit a82cfe0

Please sign in to comment.