Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

remove even more unused scala dependencies #4369

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
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
6 changes: 1 addition & 5 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -97,8 +97,6 @@ lazy val commonLib = project("common-lib").settings(
"net.logstash.logback" % "logstash-logback-encoder" % "5.0",
logback, // play-logback; needed when running the scripts
"com.typesafe.scala-logging" %% "scala-logging" % "3.9.2",
"org.scalacheck" %% "scalacheck" % "1.14.0",
"com.typesafe.scala-logging" %% "scala-logging" % "3.9.2",
// needed to parse conditional statements in `logback.xml`
// i.e. to only log to disk in DEV
// see: https://logback.qos.ch/setup.html#janino
Expand All @@ -107,7 +105,6 @@ lazy val commonLib = project("common-lib").settings(
"org.scanamo" %% "scanamo" % "2.0.0",
// Necessary to have a mix of play library versions due to scala-java8-compat incompatibility
ws,
"org.yaml" % "snakeyaml" % "1.31",
"org.testcontainers" % "elasticsearch" % "1.19.2" % Test
),
dependencyOverrides += "ch.qos.logback" % "logback-classic" % "1.2.13" % Test
Expand Down Expand Up @@ -146,7 +143,7 @@ lazy val mediaApi = playProject("media-api", 9001)
libraryDependencies ++= Seq(
"org.apache.commons" % "commons-email" % "1.5",
"org.parboiled" %% "parboiled" % "2.1.7",
"org.http4s" %% "http4s-core" % "0.23.17",
"org.http4s" %% "http4s-core" % "0.23.17", // TODO remove - only used for UriTemplate builder class
)
)

Expand All @@ -157,7 +154,6 @@ lazy val thrall = playProject("thrall", 9002)
.settings(
pipelineStages := Seq(digest, gzip),
libraryDependencies ++= Seq(
"org.codehaus.groovy" % "groovy-json" % "3.0.7",
"software.amazon.kinesis" % "amazon-kinesis-client" % "2.4.2",
"io.github.streetcontxt" %% "kcl-akka-stream" % "4.1.1",
"org.testcontainers" % "elasticsearch" % "1.19.2" % Test,
Expand Down
Loading