-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
30 lines (23 loc) · 1018 Bytes
/
build.sbt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
import com.typesafe.sbt.SbtNativePackager._
import NativePackagerKeys._
name := """akka-actor-ladybugs"""
version := "1.0"
scalaVersion := "2.11.6"
resolvers ++= Seq(
"spray repo" at "http://repo.spray.io",
"Sonatype OSS Snapshots" at "https://oss.sonatype.org/content/repositories/snapshots"
)
libraryDependencies ++= Seq(
"com.typesafe.akka" %% "akka-actor" % "2.3.9" withSources(),
"com.typesafe.akka" %% "akka-slf4j" % "2.3.9",
"io.spray" %% "spray-json" % "1.3.1",
"com.wandoulabs.akka" %% "spray-websocket" % "0.1.4" withSources(),
"joda-time" % "joda-time" % "2.9",
"org.webjars" % "normalize.css" % "3.0.2",
"org.webjars" % "jquery" % "2.1.1",
"org.webjars" % "lodash" % "2.4.1-6",
"org.scalatest" %% "scalatest" % "2.2.4" % "test",
"com.typesafe.akka" %% "akka-testkit" % "2.3.9" % "test" withSources()
)
Revolver.settings
packageArchetype.java_application