Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .git-blame-ignore-revs
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,6 @@ aae99098fae4a59fed75ecb5e71db3af96de4a07

# Scala Steward: Reformat with scalafmt 3.9.7
535f319d144ddfaf77dcd73a0d5be472803a3933

# Scala Steward: Reformat with scalafmt 3.9.9
4094db7c730bc978a6e4875aa0916dcc6e9ecc88
2 changes: 1 addition & 1 deletion .scalafmt.conf
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# initial version taken over from alpakka
# https://akka.io/blog/2019/09/09/akka-family-builds

version = 3.9.8
version = 3.9.9
runner.dialect = "scala213"
style = defaultWithAlign

Expand Down
12 changes: 6 additions & 6 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -57,13 +57,13 @@ lazy val root = (project in file("."))
"org.playframework" %% "play-json" % playJsonVersion,
"com.typesafe.play" %% "play-ws-standalone" % playWsVersion,
"com.typesafe.play" %% "play-ws-standalone-json" % playWsVersion,
"org.slf4j" % "slf4j-api" % slf4jVersion,
"org.slf4j" % "jcl-over-slf4j" % slf4jVersion,
"org.slf4j" % "slf4j-api" % slf4jVersion,
"org.slf4j" % "jcl-over-slf4j" % slf4jVersion,
// TEST
"ch.qos.logback" % "logback-classic" % logbackVersion % TestAndIntegrationTest,
"org.specs2" %% "specs2-core" % specs2Version % TestAndIntegrationTest,
"org.specs2" %% "specs2-junit" % specs2Version % TestAndIntegrationTest,
"com.typesafe.play" %% "play-ahc-ws-standalone" % playWsVersion % TestAndIntegrationTest,
"ch.qos.logback" % "logback-classic" % logbackVersion % TestAndIntegrationTest,
"org.specs2" %% "specs2-core" % specs2Version % TestAndIntegrationTest,
"org.specs2" %% "specs2-junit" % specs2Version % TestAndIntegrationTest,
"com.typesafe.play" %% "play-ahc-ws-standalone" % playWsVersion % TestAndIntegrationTest,
"com.whisk" %% "docker-testkit-core" % dockerTestkitVersion % TestAndIntegrationTest excludeAll (nettyExclusions: _*)
).map(_.excludeAll(libraryExclusions: _*))
)
Expand Down