-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
28 lines (23 loc) · 1.17 KB
/
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
name := "moshpit"
version := "1.0"
scalaVersion := "2.12.2"
fork := true
//retrieveManaged := true
javaOptions := Seq("-Dmx=1024M")
resolvers += "Typesafe Repository" at "http://repo.typesafe.com/typesafe/releases/"
resolvers += Resolver.url("bintray-sbt-plugins", url("http://dl.bintray.com/sbt/sbt-plugin-releases"))(Resolver.ivyStylePatterns)
//addSbtPlugin("com.eed3si9n" % "sbt-assembly" % "0.14.4")
libraryDependencies ++=
Seq("com.typesafe.akka" %% "akka-actor" % "2.5.3",
"com.typesafe.akka" %% "akka-remote" % "2.5.3",
"com.typesafe.akka" %% "akka-testkit" % "2.5.3",
"org.typelevel" %% "cats" % "0.9.0",
"com.roundeights" %% "hasher" % "1.2.0",
"com.typesafe.akka" %% "akka-http" % "10.0.9",
"com.typesafe.akka" %% "akka-http-spray-json" % "10.0.7",
"com.github.nscala-time" %% "nscala-time" % "2.16.0",
"org.scalactic" %% "scalactic" % "3.0.1",
"org.scalatest" %% "scalatest" % "3.0.1" % "test")
mainClass in Compile := Some("moshpit.Main")
logBuffered in Test := false
testOptions in Test += Tests.Argument(TestFrameworks.ScalaCheck, "-maxSize", "120", "-minSuccessfulTests", "500", "-workers", "1", "-verbosity", "1")