Skip to content

Commit

Permalink
setup sbt project
Browse files Browse the repository at this point in the history
  • Loading branch information
jrudolph committed Dec 15, 2011
1 parent fc6c63b commit 14b089c
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
/.idea/
/project/boot/
/project/plugins/project
target/
lib_managed/
src_managed/
test-output/
*.iml
21 changes: 21 additions & 0 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
seq(lsSettings :_*)

sbtPlugin := true

version := "0.5.0"

name := "sbt-hot-deploy"

organization := "cc.spray"

homepage := Some(url("http://github.com/spray/sbt-hot-deploy"))

licenses in GlobalScope += "Apache License 2.0" -> url("https://github.com/spray/sbt-hot-deploy/raw/master/LICENSE")

(LsKeys.tags in LsKeys.lsync) := Seq("sbt-plugin", "sbt", "hotdeploy", "jrebel")

(LsKeys.docsUrl in LsKeys.lsync) <<= homepage

(description in LsKeys.lsync) :=
"An sbt plugin which allows to run the project in the background while doing continuous recompilation."

5 changes: 5 additions & 0 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
resolvers ++= Seq(
"less is" at "http://repo.lessis.me",
"coda" at "http://repo.codahale.com")

addSbtPlugin("me.lessis" % "ls-sbt" % "0.1.0")

0 comments on commit 14b089c

Please sign in to comment.