Skip to content

Commit

Permalink
add bcpkix test dependency to fix dependabot issues (#1344)
Browse files Browse the repository at this point in the history
* add bcpkix test dependency to fix dependabot issues

* Update Dependencies.scala
  • Loading branch information
pjfanning authored May 25, 2024
1 parent 3fff738 commit a4412c4
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ object Dependencies {
// needs to be inline with the aeron version, check
// https://github.com/real-logic/aeron/blob/1.x.y/build.gradle
val agronaVersion = "1.21.1"
val bouncyCastleVersion = "1.78.1"
val nettyVersion = "4.1.110.Final"
val logbackVersion = "1.3.14"

Expand Down Expand Up @@ -118,7 +119,9 @@ object Dependencies {
}

object TestDependencies {
val bcprov = "org.bouncycastle" % "bcprov-jdk18on" % "1.78.1" % Test
val bcprov = "org.bouncycastle" % "bcprov-jdk18on" % bouncyCastleVersion % Test
val bcpkix = "org.bouncycastle" % "bcpkix-jdk18on" % bouncyCastleVersion % Test
val bcutil = "org.bouncycastle" % "bcutil-jdk18on" % bouncyCastleVersion % Test
val commonsIo = "commons-io" % "commons-io" % "2.16.1" % Test
val commonsCodec = "commons-codec" % "commons-codec" % "1.17.0" % Test
val commonsCompress = "org.apache.commons" % "commons-compress" % "1.26.1" % Test
Expand Down

0 comments on commit a4412c4

Please sign in to comment.