summaryrefslogtreecommitdiff
path: root/project
diff options
context:
space:
mode:
authorMathias <mathias@spray.cc>2011-07-11 14:44:07 +0200
committerMathias <mathias@spray.cc>2011-07-11 14:44:07 +0200
commitf96518d5bd725bd91b1cd4ee3ea3e1667c03983c (patch)
tree51adb63940affcc8ac50c6a32d6ff95ca18f374e /project
parentbb9ea8dd6d00ae3a1d9df64da693603d3aa53083 (diff)
downloadspray-json-f96518d5bd725bd91b1cd4ee3ea3e1667c03983c.tar.gz
spray-json-f96518d5bd725bd91b1cd4ee3ea3e1667c03983c.tar.bz2
spray-json-f96518d5bd725bd91b1cd4ee3ea3e1667c03983c.zip
Add implicit.ly integration
Diffstat (limited to 'project')
-rw-r--r--project/build/Project.scala2
-rw-r--r--project/plugins/Plugins.scala6
2 files changed, 4 insertions, 4 deletions
diff --git a/project/build/Project.scala b/project/build/Project.scala
index 62b0b21..a520152 100644
--- a/project/build/Project.scala
+++ b/project/build/Project.scala
@@ -1,7 +1,7 @@
import sbt._
import Process._
-class Project(info: ProjectInfo) extends DefaultProject(info) {
+class Project(info: ProjectInfo) extends DefaultProject(info) with posterous.Publish {
// -------------------------------------------------------------------------------------------------------------------
// All repositories *must* go here! See ModuleConfigurations below.
diff --git a/project/plugins/Plugins.scala b/project/plugins/Plugins.scala
index a599287..a6b0cfd 100644
--- a/project/plugins/Plugins.scala
+++ b/project/plugins/Plugins.scala
@@ -16,11 +16,11 @@ class Plugins(info: ProjectInfo) extends PluginDefinition(info) {
// Therefore, if repositories are defined, this must happen as def, not as val.
// -------------------------------------------------------------------------------------------------------------------
import Repositories._
- //e.g. lazy val akkaModuleConfig = ModuleConfiguration("se.scalablesolutions.akka", akkaRepo)
+ val posterousSbtModuleConfig = ModuleConfiguration("net.databinder", ScalaToolsReleases)
// -------------------------------------------------------------------------------------------------------------------
// Plugins
// -------------------------------------------------------------------------------------------------------------------
- // e.g. val akkaPlugin = "se.scalablesolutions.akka" % "akka-sbt-plugin" % "1.0"
-
+
+ val posterousSbt = "net.databinder" % "posterous-sbt" % "0.1.7"
}