summaryrefslogtreecommitdiff
path: root/build.sbt
diff options
context:
space:
mode:
authorMathias <mathias@spray.cc>2012-02-01 11:41:34 +0100
committerMathias <mathias@spray.cc>2012-02-01 12:41:19 +0100
commit8726048c65d289d735552afbf803042473d3093e (patch)
treee6d9ae2dbb44aad3fe2dfab4f29d49e3978c8f85 /build.sbt
parentdcec5e7a22d249919ea24f8ac8b7c97c550d9370 (diff)
downloadspray-json-8726048c65d289d735552afbf803042473d3093e.tar.gz
spray-json-8726048c65d289d735552afbf803042473d3093e.tar.bz2
spray-json-8726048c65d289d735552afbf803042473d3093e.zip
Bump version number to 1.1.0, change publishing target to repo.spray.cc
Diffstat (limited to 'build.sbt')
-rw-r--r--build.sbt9
1 files changed, 5 insertions, 4 deletions
diff --git a/build.sbt b/build.sbt
index d49333c..0d8e929 100644
--- a/build.sbt
+++ b/build.sbt
@@ -1,8 +1,8 @@
name := "spray-json"
-organization := "cc.spray.json"
+organization := "cc.spray"
-version := "1.1.0-SNAPSHOT"
+version := "1.1.0"
description := "A Scala library for easy and idiomatic JSON (de)serialization"
@@ -23,8 +23,9 @@ publishMavenStyle := true
publishTo <<= version { version =>
Some {
- "snapshots" at {
- "http://nexus.scala-tools.org/content/repositories/" + {
+ "spray nexus" at {
+ // public uri is repo.spray.cc, we use an SSH tunnel to the nexus here
+ "http://localhost:42424/content/repositories/" + {
if (version.trim.endsWith("SNAPSHOT")) "snapshots/" else"releases/"
}
}