summaryrefslogtreecommitdiff
path: root/build.sbt
diff options
context:
space:
mode:
authorLi Haoyi <haoyi@dropbox.com>2014-08-05 08:18:51 -0700
committerLi Haoyi <haoyi@dropbox.com>2014-08-05 08:18:51 -0700
commit3c601829ce48d470c520f9074d39dd69b2e9f8b5 (patch)
treea56bf8c6b62700c1a20f591f528dd1c77ad6a9b3 /build.sbt
parent859012dfb9cfb7038e153765a85db8c8f311ed17 (diff)
downloadworkbench-3c601829ce48d470c520f9074d39dd69b2e9f8b5.tar.gz
workbench-3c601829ce48d470c520f9074d39dd69b2e9f8b5.tar.bz2
workbench-3c601829ce48d470c520f9074d39dd69b2e9f8b5.zip
0.1.3
Diffstat (limited to 'build.sbt')
-rw-r--r--build.sbt8
1 files changed, 3 insertions, 5 deletions
diff --git a/build.sbt b/build.sbt
index 4e87481..729ded9 100644
--- a/build.sbt
+++ b/build.sbt
@@ -2,7 +2,7 @@ import sbt.Keys._
name := "workbench"
-version := "0.1.2"
+version := "0.1.3"
organization := "com.lihaoyi"
@@ -11,9 +11,7 @@ sbtPlugin := true
// Sonatype
publishArtifact in Test := false
-publishTo <<= version { (v: String) =>
- Some("releases" at "https://oss.sonatype.org/service/local/staging/deploy/maven2")
-}
+publishTo := Some("releases" at "https://oss.sonatype.org/service/local/staging/deploy/maven2")
pomExtra := (
<url>https://github.com/lihaoyi/workbench</url>
@@ -43,6 +41,6 @@ resolvers += "typesafe" at "http://repo.typesafe.com/typesafe/releases/"
libraryDependencies ++= Seq(
"io.spray" % "spray-can" % "1.3.1",
"io.spray" % "spray-routing" % "1.3.1",
- "com.typesafe.akka" %% "akka-actor" % "2.3.0",
+ "com.typesafe.akka" %% "akka-actor" % "2.3.0",
"com.typesafe.play" %% "play-json" % "2.2.2"
)