File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed
Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -51,7 +51,10 @@ lazy val commonSettings = Seq(
5151 scalacOptions ++= commonScalacOptions,
5252 Test / parallelExecution := false ,
5353 (Compile / compile) := ((Compile / compile) dependsOn printScalaVersion).value, // printScalaVersion is run with compile
54- jacocoExcludes := commonJacocoExcludes
54+ jacocoExcludes := commonJacocoExcludes,
55+ // to mitigate CVE-2022-31183
56+ dependencyOverrides += " co.fs2" %% " fs2-core" % " 3.2.11" ,
57+ dependencyOverrides += " co.fs2" %% " fs2-io" % " 3.2.11" ,
5558)
5659
5760lazy val parent = (project in file(" ." ))
Original file line number Diff line number Diff line change @@ -41,3 +41,5 @@ addSbtPlugin("za.co.absa.sbt" % "sbt-jacoco" % "3.4.1-absa.4" from "https://gith
4141addSbtPlugin(" com.thoughtworks.sbt-api-mappings" % " sbt-api-mappings" % " 3.0.2" )
4242
4343addSbtPlugin(" io.github.davidmweber" % " flyway-sbt" % " 7.4.0" )
44+
45+ addDependencyTreePlugin
You can’t perform that action at this time.
0 commit comments