-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
32 lines (23 loc) · 1.01 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
name := "akka-http-java-client"
organization := "com.ferhtaydn"
version := "0.1.0"
version := "0.1"
scalaVersion := "2.11.8"
scalacOptions := Seq("-unchecked", "-deprecation", "-encoding", "utf8")
mainClass in Compile := Some("HelloWorld")
libraryDependencies ++= {
val akkaStreamVersion = "2.5.4"
val akkaHttpVersion = "10.0.10"
val scalaTestV = "3.0.4"
Seq(
"com.typesafe.akka" %% "akka-http" % akkaHttpVersion,
"com.typesafe.akka" %% "akka-http-jackson" % akkaHttpVersion,
"com.fasterxml.jackson.dataformat" % "jackson-dataformat-csv" % "2.7.5",
// Only when running against Akka 2.5 explicitly depend on akka-streams in same version as akka-actor
"com.typesafe.akka" %% "akka-stream" % akkaStreamVersion, // or whatever the latest version is
"com.typesafe.akka" %% "akka-actor" % akkaStreamVersion
)
}
assemblyJarName in assembly := "GoEuroTest.jar"
mainClass in assembly := Some("com.ferhtaydn.akkahttpjavaclient.GoEuroTest")
initialCommands := "import com.ferhtaydn.akkahttpjavaclient._"