Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
patsta32 committed Apr 19, 2021
1 parent 012c997 commit 1e6b55f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
1 change: 0 additions & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,6 @@ lazy val root = (project in file("."))
dependencyOverrides += Dependencies.sl4j, // Override to avoid problems with HikariCP 4.x
swaggerDomainNameSpaces := Seq(
"models",
"publicmetrics"
), // New Models have to be added here to be referencable in routes
swaggerPrettyJson := true,
swaggerV3 := true,
Expand Down
11 changes: 7 additions & 4 deletions project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,15 @@ object Dependencies {

val scalaVersion = "2.13.3"
val akkaVersion = "2.6.14"

val akkaTyped = "com.typesafe.akka" %% "akka-actor-typed" % akkaVersion
val akkaHttp = "com.typesafe.akka" %% "akka-http" % "10.1.14"
val akkaHttp = "com.typesafe.akka" %% "akka-http" % "10.1.14"
val akka = "com.typesafe.akka" %% "akka-actor" % akkaVersion
val akkaJackson =
"com.typesafe.akka" %% "akka-serialization-jackson" % akkaVersion // https://github.com/akka/akka/issues/29351
val akkaStreams = "com.typesafe.akka" %% "akka-stream" % akkaVersion

// https://github.com/akka/akka/issues/29351
val akkaJackson = "com.typesafe.akka" %% "akka-serialization-jackson" % akkaVersion

val akkaStreams = "com.typesafe.akka" %% "akka-stream" % akkaVersion

// innFactory Utils

Expand Down

0 comments on commit 1e6b55f

Please sign in to comment.