-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathbuild.sbt
More file actions
22 lines (16 loc) · 742 Bytes
/
build.sbt
File metadata and controls
22 lines (16 loc) · 742 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
name := "akka-http-java-client"
organization := "com.ferhtaydn"
version := "0.1.0"
scalaVersion := "2.11.8"
libraryDependencies ++= Seq(
"com.typesafe.akka" %% "akka-http-core" % "2.4.7",
"com.typesafe.akka" %% "akka-http-testkit" % "2.4.7",
"com.typesafe.akka" %% "akka-http-experimental" % "2.4.7",
"com.typesafe.akka" %% "akka-http-jackson-experimental" % "2.4.7",
"com.fasterxml.jackson.dataformat" % "jackson-dataformat-csv" % "2.7.5",
"junit" % "junit" % "4.12" % "test",
"com.novocode" % "junit-interface" % "0.11" % "test"
)
assemblyJarName in assembly := "GoEuroTest.jar"
mainClass in assembly := Some("com.ferhtaydn.akkahttpjavaclient.GoEuroTest")
initialCommands := "import com.ferhtaydn.akkahttpjavaclient._"