mirror of
https://github.com/pgpainless/pgpainless.git
synced 2024-11-17 18:02:05 +01:00
Bump BC to 1.72, BCPG to 1.72.1
This commit is contained in:
parent
754fcf72a1
commit
f5e4c7571c
2 changed files with 6 additions and 2 deletions
|
@ -21,7 +21,8 @@ dependencies {
|
||||||
|
|
||||||
// Bouncy Castle
|
// Bouncy Castle
|
||||||
api "org.bouncycastle:bcprov-jdk15to18:$bouncyCastleVersion"
|
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
|
// @Nullable, @Nonnull annotations
|
||||||
implementation "com.google.code.findbugs:jsr305:3.0.2"
|
implementation "com.google.code.findbugs:jsr305:3.0.2"
|
||||||
|
|
|
@ -8,7 +8,10 @@ allprojects {
|
||||||
isSnapshot = true
|
isSnapshot = true
|
||||||
pgpainlessMinAndroidSdk = 10
|
pgpainlessMinAndroidSdk = 10
|
||||||
javaSourceCompatibility = 1.8
|
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'
|
junitVersion = '5.8.2'
|
||||||
logbackVersion = '1.2.11'
|
logbackVersion = '1.2.11'
|
||||||
mockitoVersion = '4.5.1'
|
mockitoVersion = '4.5.1'
|
||||||
|
|
Loading…
Reference in a new issue