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

[WM-2400] Upgrade logback-classic dependency to fix vulnerability #331

Merged
merged 24 commits into from
Dec 21, 2023
Merged
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
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: 2 additions & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ resolvers += "artifactory-releases" at artifactory + "libs-release"
resolvers += "artifactory-snapshots" at artifactory + "libs-snapshot"

libraryDependencies ++= Seq(
"ch.qos.logback" % "logback-classic" % "1.2.11",
"ch.qos.logback" % "logback-classic" % "1.4.14",
"com.google.api-client" % "google-api-client" % "1.25.0" excludeAll ExclusionRule(organization = "com.google.guava"),
"com.google.apis" % "google-api-services-admin-directory" % "directory_v1-rev118-1.25.0" excludeAll
ExclusionRule(organization = "com.google.guava"),
Expand Down Expand Up @@ -116,6 +116,7 @@ assemblyMergeStrategy in assembly := {
MergeStrategy.concat
case x if x.endsWith("io.netty.versions.properties") =>
MergeStrategy.discard
case x if x.endsWith("module-info.class") => MergeStrategy.discard
case PathList(ps@_*) if Assembly.isReadme(ps.last) || Assembly.isLicenseFile(ps.last) =>
MergeStrategy.rename
case PathList("META-INF", xs@_*) =>
Expand Down