Skip to content

Commit

Permalink
Merge pull request #745 from ckipp01/security
Browse files Browse the repository at this point in the history
deps: exclude sshd-sftp
  • Loading branch information
eed3si9n authored Dec 8, 2022
2 parents efd9a67 + 76ab950 commit 5e23987
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,14 @@ object Dependencies {
ExclusionRule("org.tukaani", "xz"),
ExclusionRule("junit", "junit")
)
val jgit = "org.eclipse.jgit" % "org.eclipse.jgit" % "5.13.1.202206130422-r"
val jgitSshApache = "org.eclipse.jgit" % "org.eclipse.jgit.ssh.apache" % "5.13.1.202206130422-r"
// We excluded sshd-sftp to avoid https://github.com/advisories/GHSA-fhw8-8j55-vwgq
// Either that or we need to bump to jgit 6.x
val jgit = "org.eclipse.jgit" % "org.eclipse.jgit" % "5.13.1.202206130422-r" excludeAll (
ExclusionRule("org.apache.sshd", "sshd-sftp")
)
val jgitSshApache = "org.eclipse.jgit" % "org.eclipse.jgit.ssh.apache" % "5.13.1.202206130422-r" excludeAll (
ExclusionRule("org.apache.sshd", "sshd-sftp")
)
val scopt = "com.github.scopt" %% "scopt" % "4.1.0"
val scalacheck = "org.scalacheck" %% "scalacheck" % "1.17.0"
val scalatest = "org.scalatest" %% "scalatest" % "3.2.14"
Expand Down

0 comments on commit 5e23987

Please sign in to comment.