summaryrefslogtreecommitdiff
path: root/build.sbt
diff options
context:
space:
mode:
authorLi Haoyi <haoyi@dropbox.com>2014-04-01 22:18:29 -0700
committerLi Haoyi <haoyi@dropbox.com>2014-04-01 22:18:29 -0700
commit8bda8e06ef8c5e58fe39a23bead814d0175f5b4c (patch)
tree2426ff8ab53f848a13cd9695e9f8d03fd7badedc /build.sbt
parent3ee4f794be2e491f142d2cc8aec0db7a0be32484 (diff)
downloadworkbench-8bda8e06ef8c5e58fe39a23bead814d0175f5b4c.tar.gz
workbench-8bda8e06ef8c5e58fe39a23bead814d0175f5b4c.tar.bz2
workbench-8bda8e06ef8c5e58fe39a23bead814d0175f5b4c.zip
0.1.2
Diffstat (limited to 'build.sbt')
-rw-r--r--build.sbt12
1 files changed, 5 insertions, 7 deletions
diff --git a/build.sbt b/build.sbt
index 769ecaa..4e87481 100644
--- a/build.sbt
+++ b/build.sbt
@@ -2,7 +2,7 @@ import sbt.Keys._
name := "workbench"
-version := "0.1.1"
+version := "0.1.2"
organization := "com.lihaoyi"
@@ -12,7 +12,7 @@ sbtPlugin := true
publishArtifact in Test := false
publishTo <<= version { (v: String) =>
- Some("releases" at "https://oss.sonatype.org/service/local/staging/deploy/maven2")
+ Some("releases" at "https://oss.sonatype.org/service/local/staging/deploy/maven2")
}
pomExtra := (
@@ -36,15 +36,13 @@ pomExtra := (
</developers>
)
-(resources in Compile) := {(resources in Compile).value ++ (baseDirectory.value * "*.ts").get}
-
-resolvers += "spray repo" at "http://repo.spray.io"
+(resources in Compile) := {(resources in Compile).value ++ (baseDirectory.value * "*.js").get}
resolvers += "typesafe" at "http://repo.typesafe.com/typesafe/releases/"
libraryDependencies ++= Seq(
- "io.spray" % "spray-can" % "1.3.0",
- "io.spray" % "spray-routing" % "1.3.0",
+ "io.spray" % "spray-can" % "1.3.1",
+ "io.spray" % "spray-routing" % "1.3.1",
"com.typesafe.akka" %% "akka-actor" % "2.3.0",
"com.typesafe.play" %% "play-json" % "2.2.2"
)