Skip to content

Commit 22f6568

Browse files
committed
IC-73 exclude unused protobuf-java dependency from tink to fix CVE-2021-22569
1 parent b2ddd9b commit 22f6568

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

build.sbt

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,10 @@ lazy val root = (project in file("."))
2323
libraryDependencies ++= Seq(
2424
"co.fs2" %% "fs2-core" % "3.2.2",
2525
"co.fs2" %% "fs2-io" % "3.2.2",
26-
"com.google.crypto.tink" % "tink" % "1.6.1",
26+
"com.google.crypto.tink" % "tink" % "1.6.1" excludeAll(
27+
// excluded due to CVE in version used by tink 1.6.1 -> https://github.com/advisories/GHSA-wrvw-hg22-4m67
28+
ExclusionRule(organization = "com.google.protobuf"),
29+
),
2730
"com.softwaremill.magnolia1_2" %% "magnolia" % "1.0.0-M7",
2831
"de.siegmar" % "fastcsv" % "1.0.3",
2932
"org.mapdb" % "mapdb" % "3.0.8",

0 commit comments

Comments
 (0)