Move bouncycastle version to version.gradle

This commit is contained in:
Paul Schaub 2022-04-26 01:06:16 +02:00
parent b1d3b42d39
commit 1def42b54b
Signed by: vanitasvitae
GPG Key ID: 62BEE9264BF17311
2 changed files with 2 additions and 1 deletions

View File

@ -8,6 +8,7 @@ allprojects {
isSnapshot = true
minAndroidSdk = 10
javaSourceCompatibility = 1.8
bouncycastleVersion = '1.71'
junitVersion = '5.8.2'
slf4jVersion = '1.7.36'
logbackVersion = '1.2.11'

View File

@ -18,7 +18,7 @@ dependencies {
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:$junitVersion"
// Arrays.areEqual, Base64...
implementation("org.bouncycastle:bcutil-jdk15to18:1.71")
implementation "org.bouncycastle:bcutil-jdk15to18:$bouncycastleVersion"
// @Nonnull, @Nullable...
implementation "com.google.code.findbugs:jsr305:3.0.2"