forked from theiterators/akka-http-microservice
-
Notifications
You must be signed in to change notification settings - Fork 3
/
build.sbt
38 lines (30 loc) · 1.24 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
import sbt.librarymanagement.ConflictWarning
enablePlugins(JavaAppPackaging)
name := "pekko-http-microservice"
organization := "com.theiterators"
version := "1.0"
scalaVersion := "3.4.1"
conflictWarning := ConflictWarning.disable
scalacOptions := Seq("-unchecked", "-deprecation", "-encoding", "utf8")
resolvers ++= Resolver.sonatypeOssRepos("snapshots")
libraryDependencies ++= {
val pekkoHttpV = "1.0.1"
val pekkoV = "1.0.3"
val circeV = "0.14.9"
val scalaTestV = "3.2.19"
val akkaHttpCirceV = "1.39.2"
val pekkoHttpJsonV = "2.6.0"
Seq(
"org.apache.pekko" %% "pekko-actor" % pekkoV,
"org.apache.pekko" %% "pekko-stream" % pekkoV,
"org.apache.pekko" %% "pekko-http" % pekkoHttpV,
"org.apache.pekko" %% "pekko-testkit" % pekkoV % "test",
"org.apache.pekko" %% "pekko-http-testkit" % pekkoHttpV % "test",
"io.circe" %% "circe-core" % circeV,
"io.circe" %% "circe-parser" % circeV,
"io.circe" %% "circe-generic" % circeV,
"com.github.pjfanning" %% "pekko-http-circe" % pekkoHttpJsonV,
"org.scalatest" %% "scalatest" % scalaTestV % "test"
)
}
Revolver.settings