import sbt.Keys._ name := "workbench" version := "0.1.1" organization := "com.lihaoyi" sbtPlugin := true // Sonatype publishArtifact in Test := false publishTo <<= version { (v: String) => Some("releases" at "https://oss.sonatype.org/service/local/staging/deploy/maven2") } pomExtra := ( https://github.com/lihaoyi/workbench MIT license http://www.opensource.org/licenses/mit-license.php git://github.com/lihaoyi/workbench.git scm:git://github.com/lihaoyi/workbench.git lihaoyi Li Haoyi https://github.com/lihaoyi ) (resources in Compile) := {(resources in Compile).value ++ (baseDirectory.value * "*.ts").get} resolvers += "spray repo" at "http://repo.spray.io" 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", "com.typesafe.akka" %% "akka-actor" % "2.3.0", "com.typesafe.play" %% "play-json" % "2.2.2" )