1
0
Fork 0
mirror of https://github.com/pgpainless/pgpainless.git synced 2024-11-22 20:32:05 +01:00

Bump BouncyCastle to 1.62

also introduce 'boucnyCastleVersion' in version.gradle.
This commit is contained in:
Florian Schmaus 2019-07-25 11:06:33 +02:00
parent 8470d7b7f9
commit 25cb1b8cc0
2 changed files with 4 additions and 8 deletions

View file

@ -1,16 +1,11 @@
ext {
bcVersion = "1.60"
}
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.12'
/*
compile "org.bouncycastle:bcprov-debug-jdk15on:$bcVersion"
compile "org.bouncycastle:bcprov-debug-jdk15on:$bouncyCastleVersion"
/*/
compile "org.bouncycastle:bcprov-jdk15on:$bcVersion"
compile "org.bouncycastle:bcprov-jdk15on:$bouncyCastleVersion"
//*/
compile "org.bouncycastle:bcpg-jdk15on:$bcVersion"
compile "org.bouncycastle:bcpg-jdk15on:$bouncyCastleVersion"
// https://mvnrepository.com/artifact/com.google.code.findbugs/jsr305
compile group: 'com.google.code.findbugs', name: 'jsr305', version: '3.0.2'

View file

@ -5,5 +5,6 @@ allprojects {
isSnapshot = true
pgpainlessMinAndroidSdk = 9
javaSourceCompatibility = 1.8
bouncyCastleVersion = '1.62'
}
}