summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMathias <mathias@spray.cc>2012-02-06 15:24:47 +0100
committerMathias <mathias@spray.cc>2012-02-06 15:24:47 +0100
commit45ebe07038881789179f9e12b656f604b8a9cbfe (patch)
tree61203692fa2588530f1e94a1ee5f161f388af4b8
parenta6780baad162ff8b1f5002096a033a19f9038418 (diff)
downloadspray-json-45ebe07038881789179f9e12b656f604b8a9cbfe.tar.gz
spray-json-45ebe07038881789179f9e12b656f604b8a9cbfe.tar.bz2
spray-json-45ebe07038881789179f9e12b656f604b8a9cbfe.zip
Upgrade to specs2 1.7.1
-rw-r--r--build.sbt13
1 files changed, 12 insertions, 1 deletions
diff --git a/build.sbt b/build.sbt
index b387b59..01f11e0 100644
--- a/build.sbt
+++ b/build.sbt
@@ -20,11 +20,16 @@ scalacOptions := Seq("-deprecation", "-encoding", "utf8")
libraryDependencies ++= Seq(
"org.parboiled" % "parboiled-scala" % "1.0.2" % "compile",
- "org.specs2" %% "specs2" % "1.6.1" % "test"
+ "org.specs2" %% "specs2" % "1.7.1" % "test"
)
scaladocOptions <<= (name, version).map { (n, v) => Seq("-doc-title", n + " " + v) }
+
+///////////////
+// publishing
+///////////////
+
credentials += Credentials(Path.userHome / ".ivy2" / ".credentials")
publishMavenStyle := true
@@ -40,6 +45,12 @@ publishTo <<= version { version =>
}
}
+
+///////////////
+// ls-sbt
+///////////////
+
+
seq(lsSettings:_*)
(LsKeys.tags in LsKeys.lsync) := Seq("json")