-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.sbt
30 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
enablePlugins(JavaAppPackaging)
name := """akka-http-microservice"""
organization := "pl.allegro"
version := "0.1"
scalaVersion := "2.11.8"
scalacOptions := Seq("-unchecked", "-deprecation", "-encoding", "utf8")
libraryDependencies ++= {
val akkaV = "2.4.7"
val scalaTestV = "2.2.5"
Seq(
"com.typesafe.akka" %% "akka-actor" % akkaV,
"com.typesafe.akka" %% "akka-stream" % akkaV,
"com.typesafe.akka" %% "akka-http-core" % akkaV,
"com.typesafe.akka" %% "akka-http-experimental" % akkaV,
"com.typesafe.akka" %% "akka-http-spray-json-experimental" % akkaV,
"com.typesafe.akka" %% "akka-http-testkit" % akkaV,
"org.scalatest" %% "scalatest" % scalaTestV % "test"
)
}
Revolver.settings
mainClass in Revolver.reStart := Some("ReverseProxy")
//mainClass in Revolver.reStart := Some("DemoApp")
mainClass in (Compile, run) := Some("DemoApp")