File tree Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -9,8 +9,14 @@ object Dependencies {
9
9
ExclusionRule (" org.tukaani" , " xz" ),
10
10
ExclusionRule (" junit" , " junit" )
11
11
)
12
- val jgit = " org.eclipse.jgit" % " org.eclipse.jgit" % " 5.13.1.202206130422-r"
13
- val jgitSshApache = " org.eclipse.jgit" % " org.eclipse.jgit.ssh.apache" % " 5.13.1.202206130422-r"
12
+ // We excluded sshd-sftp to avoid https://github.com/advisories/GHSA-fhw8-8j55-vwgq
13
+ // Either that or we need to bump to jgit 6.x
14
+ val jgit = " org.eclipse.jgit" % " org.eclipse.jgit" % " 5.13.1.202206130422-r" excludeAll (
15
+ ExclusionRule (" org.apache.sshd" , " sshd-sftp" )
16
+ )
17
+ val jgitSshApache = " org.eclipse.jgit" % " org.eclipse.jgit.ssh.apache" % " 5.13.1.202206130422-r" excludeAll (
18
+ ExclusionRule (" org.apache.sshd" , " sshd-sftp" )
19
+ )
14
20
val scopt = " com.github.scopt" %% " scopt" % " 4.1.0"
15
21
val scalacheck = " org.scalacheck" %% " scalacheck" % " 1.17.0"
16
22
val scalatest = " org.scalatest" %% " scalatest" % " 3.2.14"
You can’t perform that action at this time.
0 commit comments