Skip to content

Commit

Permalink
chore: replace jsch dependency with a fork supporting RSA-SHA2-*.
Browse files Browse the repository at this point in the history
fixes #130
  • Loading branch information
JohannesRudolph authored and malhussan committed Jun 18, 2024
1 parent 9e2f0a0 commit 08f342d
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,11 @@ dependencies {
implementation("org.jetbrains.kotlin:kotlin-reflect")
implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8")

implementation("com.github.mwiede:jsch:0.2.18")
implementation("org.eclipse.jgit:org.eclipse.jgit:6.10.0.202406032230-r")
implementation("org.eclipse.jgit:org.eclipse.jgit.ssh.jsch:6.10.0.202406032230-r")
implementation("org.eclipse.jgit:org.eclipse.jgit.ssh.jsch:6.10.0.202406032230-r"){
exclude(group = "com.jcraft", module = "jsch")
}

implementation("commons-io:commons-io:2.4")
implementation("io.github.microutils:kotlin-logging:1.4.9")
Expand Down

0 comments on commit 08f342d

Please sign in to comment.