From e87da184952981724b2d5c877f420094f81350cf Mon Sep 17 00:00:00 2001 From: Florian Schmaus Date: Sun, 7 Aug 2022 16:59:47 +0200 Subject: [PATCH] Bump Bouncy Castle to 1.71 --- build.gradle | 2 +- smack-core/build.gradle | 2 +- smack-openpgp/build.gradle | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/build.gradle b/build.gradle index b38e2fab2..eda9ed85c 100644 --- a/build.gradle +++ b/build.gradle @@ -148,7 +148,7 @@ allprojects { smackMinAndroidSdk = 19 junitVersion = '5.7.1' commonsIoVersion = '2.6' - bouncyCastleVersion = '1.70' + bouncyCastleVersion = '1.71' guavaVersion = '30.1-jre' mockitoVersion = '3.7.7' orgReflectionsVersion = '0.9.11' diff --git a/smack-core/build.gradle b/smack-core/build.gradle index f614ef812..f449ec5b7 100644 --- a/smack-core/build.gradle +++ b/smack-core/build.gradle @@ -23,7 +23,7 @@ dependencies { // 'implementation' here since there is no need to shadow it // outside of the fixtures compilation classpath. That is, no test // should ever setup Bouncy Castle as security provider explicitly. - testFixturesImplementation "org.bouncycastle:bcprov-jdk15on:${bouncyCastleVersion}" + testFixturesImplementation "org.bouncycastle:bcprov-jdk18on:${bouncyCastleVersion}" testFixturesImplementation 'org.apache.commons:commons-lang3:3.10' testFixturesApi "org.jxmpp:jxmpp-jid:$jxmppVersion:tests" diff --git a/smack-openpgp/build.gradle b/smack-openpgp/build.gradle index 937636273..cde598465 100644 --- a/smack-openpgp/build.gradle +++ b/smack-openpgp/build.gradle @@ -10,7 +10,7 @@ dependencies { api 'org.pgpainless:pgpainless-core:1.3.1' - testImplementation "org.bouncycastle:bcprov-jdk15on:${bouncyCastleVersion}" + testImplementation "org.bouncycastle:bcprov-jdk18on:${bouncyCastleVersion}" testFixturesApi(testFixtures(project(":smack-core"))) testImplementation group: 'commons-io', name: 'commons-io', version: "$commonsIoVersion"