Bump BC to 1.72, BCPG to 1.72.1

This commit is contained in:
Paul Schaub 2022-11-02 10:37:06 +01:00
parent 754fcf72a1
commit f5e4c7571c
Signed by: vanitasvitae
GPG Key ID: 62BEE9264BF17311
2 changed files with 6 additions and 2 deletions

View File

@ -21,7 +21,8 @@ dependencies {
// Bouncy Castle
api "org.bouncycastle:bcprov-jdk15to18:$bouncyCastleVersion"
api "org.bouncycastle:bcpg-jdk15to18:$bouncyCastleVersion"
api "org.bouncycastle:bcpg-jdk15to18:$bouncyPgVersion"
// api(files("../libs/bcpg-jdk18on-1.70.jar"))
// @Nullable, @Nonnull annotations
implementation "com.google.code.findbugs:jsr305:3.0.2"

View File

@ -8,7 +8,10 @@ allprojects {
isSnapshot = true
pgpainlessMinAndroidSdk = 10
javaSourceCompatibility = 1.8
bouncyCastleVersion = '1.71'
bouncyCastleVersion = '1.72'
// unfortunately we rely on 1.72.1 for a patch for https://github.com/bcgit/bc-java/issues/1257
// which is a bug we introduced with a PR against BC :/ oops
bouncyPgVersion = '1.72.1'
junitVersion = '5.8.2'
logbackVersion = '1.2.11'
mockitoVersion = '4.5.1'