-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
32 lines (31 loc) · 1.61 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
29
30
31
32
val akkaVersion = "2.5.4"
val `less-stupid-betting` = project
.in(file("."))
.settings(
organization := "com.typesafe.akka.samples",
scalaVersion := "2.12.2",
scalacOptions in Compile ++= Seq("-deprecation", "-feature", "-unchecked", "-Xlog-reflective-calls", "-Xlint"),
javacOptions in Compile ++= Seq("-Xlint:unchecked", "-Xlint:deprecation"),
javacOptions in doc in Compile := Seq("-Xdoclint:none"),
libraryDependencies ++= Seq(
"org.slf4j" % "slf4j-simple" % "1.7.25",
"com.typesafe.akka" %% "akka-cluster-sharding" % akkaVersion,
"com.typesafe.akka" %% "akka-persistence" % akkaVersion,
"com.typesafe.akka" %% "akka-persistence-query" % akkaVersion,
"com.typesafe.akka" %% "akka-persistence-cassandra" % "0.55",
"com.typesafe.akka" %% "akka-http" % "10.0.10",
"com.datastax.cassandra" % "cassandra-driver-extras" % "3.1.4",
"org.apache.kafka" % "kafka-clients" % "0.10.2.0",
"org.pcollections" % "pcollections" % "2.1.2",
"com.fasterxml.jackson.core" % "jackson-databind" % "2.7.5",
"com.opengamma.strata" % "strata-collect" % "1.4.2",
"com.github.javafaker" % "javafaker" % "0.10",
"org.projectlombok" % "lombok" % "1.16.10",
"com.typesafe.akka" %% "akka-persistence-cassandra-launcher" % "0.55" % Test,
"org.scalatest" %% "scalatest" % "3.0.1" % Test,
fork in run := true,
mainClass in (Compile, run) := Some("less.stupid.betting.exchange.ExchangeApp"),
// disable parallel tests
parallelExecution in Test := false,
licenses := Seq(("CC0", url("http://creativecommons.org/publicdomain/zero/1.0")))
)