-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.sbt
51 lines (39 loc) · 1.63 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
name := "Akka Streams"
version := "1.0"
scalaVersion := "2.12.2"
resolvers ++= Seq(
"tpolecat" at "http://dl.bintray.com/tpolecat/maven",
"Scalaz Bintray Repo" at "http://dl.bintray.com/scalaz/releases",
Resolver.sonatypeRepo("releases"),
Resolver.mavenLocal,
"release-candidates" at "http://artifactory.cmdb.inhouse.paddypower.com:8081/artifactory/release-candidates",
"libs-release" at "http://artifactory.cmdb.inhouse.paddypower.com:8081/artifactory/libs-release",
"remote-repos" at "http://artifactory.cmdb.inhouse.paddypower.com:8081/artifactory/remote-repos",
"plugins-release" at "http://artifactory.cmdb.inhouse.paddypower.com:8081/artifactory/plugins-release",
"Artima Maven Repository" at "http://repo.artima.com/releases"
)
val scalacheck = Seq(
"org.scalacheck" %% "scalacheck" % "1.13.4"
)
val scalatest = Seq(
"org.scalatest" %% "scalatest" % "3.0.1"
)
val akkaV = "2.5.3"
val akkaHttpV = "10.0.9"
val akka = Seq (
"com.typesafe.akka" %% "akka-actor" % akkaV,
"com.typesafe.akka" %% "akka-stream" % akkaV,
"com.typesafe.akka" %% "akka-stream-testkit" % akkaV,
"com.typesafe.akka" %% "akka-testkit" % akkaV,
"com.typesafe.akka" %% "akka-http" % akkaHttpV,
"com.typesafe.akka" %% "akka-http-core" % akkaHttpV,
"com.typesafe.akka" %% "akka-http-spray-json" % akkaHttpV
)
val logging = Seq (
"org.slf4j" % "slf4j-api" % "1.7.12",
"ch.qos.logback" % "logback-classic" % "1.1.3",
"com.typesafe.scala-logging" %% "scala-logging" % "3.1.0",
"com.typesafe.akka" %% "akka-slf4j" % akkaV
)
libraryDependencies ++= scalacheck ++ scalatest ++ akka
//initialCommands in console := "ammonite.repl.Main().run()"