Skip to content

Commit

Permalink
sshj 0.38.0 (#305)
Browse files Browse the repository at this point in the history
* sshj 0.38.0

* sshj 0.38.0 seems to need slf4jv2

* Update Dependencies.scala
  • Loading branch information
pjfanning authored Jan 3, 2024
1 parent 0ef6649 commit 985cc9a
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,9 @@ object Dependencies {
val hoverflyVersion = "0.14.1"
val scalaCheckVersion = "1.16.0"

val LogbackVersion = if (PekkoBinaryVersion == "1.0") "1.2.13" else "1.3.14"
val LogbackForSlf4j1Version = "1.2.13"
val LogbackForSlf4j2Version = "1.3.14"
val LogbackVersion = if (PekkoBinaryVersion == "1.0") LogbackForSlf4j1Version else LogbackForSlf4j2Version

/**
* Calculates the scalatest version in a format that is used for `org.scalatestplus` scalacheck artifacts
Expand Down Expand Up @@ -179,7 +181,8 @@ object Dependencies {
val Ftp = Seq(
libraryDependencies ++= Seq(
"commons-net" % "commons-net" % "3.8.0",
"com.hierynomus" % "sshj" % "0.33.0") ++ Mockito)
"com.hierynomus" % "sshj" % "0.38.0",
"ch.qos.logback" % "logback-classic" % LogbackForSlf4j2Version % Test) ++ Mockito)

val GeodeVersion = "1.15.0"
val GeodeVersionForDocs = "115"
Expand Down

0 comments on commit 985cc9a

Please sign in to comment.