This is an automated email from the ASF dual-hosted git repository. fanningpj pushed a commit to branch pjfanning-patch-1 in repository https://gitbox.apache.org/repos/asf/pekko.git
commit 705f953f9d4f31920e186149efdb5d8321db5b6c Author: PJ Fanning <[email protected]> AuthorDate: Sat May 25 21:19:32 2024 +0100 add bcpkix test dependency to fix dependabot issues --- project/Dependencies.scala | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/project/Dependencies.scala b/project/Dependencies.scala index 1bc06b6289..5a91a6d0b0 100644 --- a/project/Dependencies.scala +++ b/project/Dependencies.scala @@ -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" + vak bouncyCastleVersion = "1.78.1" val nettyVersion = "4.1.110.Final" val logbackVersion = "1.3.14" @@ -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 --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
