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

Sync apache commons lib with beam #4863

Merged
merged 2 commits into from
Jun 7, 2023
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
4 changes: 4 additions & 0 deletions .scala-steward.conf
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,17 @@ updates.ignore = [
{ groupId = "com.google.oauth-client" },
{ groupId = "com.google.protobuf" },
{ groupId = "commons-codec" },
{ groupId = "commons-io" },
{ groupId = "io.grpc" },
{ groupId = "io.netty" },
{ groupId = "io.opencensus" },
{ groupId = "javax.annotation", artifactId = "javax.annotation-api" },
{ groupId = "joda-time", artifactId = "joda-time" },
{ groupId = "org.apache.avro" },
{ groupId = "org.apache.commons", artifactId = "commons-codec" },
{ groupId = "org.apache.commons", artifactId = "commons-compress" },
{ groupId = "org.apache.commons", artifactId = "commons-lang3" },
{ groupId = "org.apache.commons", artifactId = "commons-math3" },
{ groupId = "org.apache.flink" },
{ groupId = "org.apache.hadoop" },
{ groupId = "org.apache.httpcomponents" },
Expand Down
7 changes: 4 additions & 3 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,9 @@ val bigdataossVersion = "2.2.6"
val bigtableClientVersion = "1.28.0"
val commonsCodecVersion = "1.15"
val commonsCompressVersion = "1.21"
val commonsIoVersion = "2.7"
val commonsLang3Version = "3.9"
val commonsMath3Version = "3.6.1"
val datastoreV1ProtoClientVersion = "2.9.0"
val flinkVersion = "1.16.0"
val googleClientsVersion = "2.0.0"
Expand Down Expand Up @@ -102,9 +105,6 @@ val cassandraVersion = "3.11.15"
val catsVersion = "2.9.0"
val chillVersion = "0.10.0"
val circeVersion = "0.14.5"
val commonsIoVersion = "2.12.0"
val commonsLang3Version = "3.12.0"
val commonsMath3Version = "3.6.1"
val commonsTextVersion = "1.10.0"
val elasticsearch7Version = "7.17.9"
val elasticsearch8Version = "8.8.0"
Expand Down Expand Up @@ -1554,6 +1554,7 @@ ThisBuild / dependencyOverrides ++= Seq(
"com.google.protobuf" % "protobuf-java" % protobufVersion,
"com.google.protobuf" % "protobuf-java-util" % protobufVersion,
"commons-codec" % "commons-codec" % commonsCodecVersion,
"commons-io" % "commons-io" % commonsIoVersion,
"io.dropwizard.metrics" % "metrics-core" % metricsVersion,
"io.grpc" % "grpc-all" % grpcVersion,
"io.grpc" % "grpc-alts" % grpcVersion,
Expand Down