Skip to content

Commit

Permalink
Exclude deprecated dropwizard artifact (#5052)
Browse files Browse the repository at this point in the history
  • Loading branch information
RustedBones authored Nov 7, 2023
1 parent 81680aa commit 0eece13
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -1394,7 +1394,11 @@ lazy val `scio-smb`: Project = project
"org.tensorflow" % "tensorflow-core-api" % tensorFlowVersion % Provided,
// runtime
"org.apache.beam" % "beam-sdks-java-io-hadoop-format" % beamVersion % Runtime,
"org.apache.hadoop" % "hadoop-client" % hadoopVersion % Runtime,
"org.apache.hadoop" % "hadoop-client" % hadoopVersion % Runtime excludeAll (
// replaced by io.dropwizard.metrics metrics-core
"com.codahale.metrics", "metrics-core"
),
"io.dropwizard.metrics" % "metrics-core" % metricsVersion % Runtime,
// test
"org.apache.beam" % "beam-sdks-java-core" % beamVersion % "it,test" classifier "tests",
"org.hamcrest" % "hamcrest" % hamcrestVersion % "it,test",
Expand Down Expand Up @@ -1606,6 +1610,7 @@ ThisBuild / dependencyOverrides ++= Seq(
"commons-codec" % "commons-codec" % commonsCodecVersion,
"commons-io" % "commons-io" % commonsIoVersion,
"io.dropwizard.metrics" % "metrics-core" % metricsVersion,
"io.dropwizard.metrics" % "metrics-jvm" % metricsVersion,
"io.grpc" % "grpc-all" % grpcVersion,
"io.grpc" % "grpc-alts" % grpcVersion,
"io.grpc" % "grpc-api" % grpcVersion,
Expand Down

0 comments on commit 0eece13

Please sign in to comment.