Last active
December 21, 2015 03:29
-
-
Save agemooij/6242847 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import com.typesafe.sbt.SbtStartScript | |
seq(SbtStartScript.startScriptForClassesSettings: _*) | |
seq(Revolver.settings: _*) | |
name := "demo" | |
organization := "com.scalapenos" | |
version := "0.1-SNAPSHOT" | |
scalaVersion := "2.10.2" | |
scalacOptions := Seq("-encoding", "utf8", | |
"-target:jvm-1.6", | |
"-feature", | |
"-language:implicitConversions", | |
"-language:postfixOps", | |
"-unchecked", | |
"-deprecation", | |
"-Xlog-reflective-calls", | |
"-Ywarn-adapted-args" | |
) | |
resolvers ++= Seq("Sonatype Releases" at "http://oss.sonatype.org/content/repositories/releases", | |
"Typesafe Repository" at "http://repo.typesafe.com/typesafe/releases/", | |
"Spray Repository" at "http://repo.spray.io/", | |
"Spray Nightlies" at "http://nightlies.spray.io/") | |
libraryDependencies ++= { | |
val akkaVersion = "2.2.0" | |
val sprayVersion = "1.2-20130727" | |
Seq( | |
"com.typesafe.akka" %% "akka-actor" % akkaVersion, | |
"com.typesafe.akka" %% "akka-slf4j" % akkaVersion, | |
"io.spray" % "spray-can" % sprayVersion, | |
"io.spray" % "spray-routing" % sprayVersion, | |
"io.spray" % "spray-client" % sprayVersion, | |
"io.spray" %% "spray-json" % "1.2.5", | |
"com.github.nscala-time" %% "nscala-time" % "0.4.2", | |
"ch.qos.logback" % "logback-classic" % "1.0.12", | |
"com.typesafe.akka" %% "akka-testkit" % akkaVersion % "test", | |
"io.spray" % "spray-testkit" % sprayVersion % "test", | |
"org.specs2" %% "specs2" % "2.1.1" % "test" | |
) | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
addSbtPlugin("com.typesafe.sbt" % "sbt-start-script" % "0.8.0") | |
addSbtPlugin("io.spray" % "sbt-revolver" % "0.7.1") | |
addSbtPlugin("de.johoop" % "jacoco4sbt" % "2.0.0") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment