mirror of
https://codeberg.org/PGPainless/vks-java.git
synced 2024-11-23 16:02:06 +01:00
Move dependency versions into version.gradle and bump bc to 1.71
This commit is contained in:
parent
0ebfadac2a
commit
a36e01d7d2
3 changed files with 4 additions and 4 deletions
|
@ -70,9 +70,6 @@ allprojects {
|
|||
}
|
||||
|
||||
project.ext {
|
||||
junitVersion = '5.8.2'
|
||||
slf4jVersion = '1.7.32'
|
||||
logbackVersion = '1.2.10'
|
||||
rootConfigDir = new File(rootDir, 'config')
|
||||
gitCommit = getGitCommit()
|
||||
isContinuousIntegrationEnvironment = Boolean.parseBoolean(System.getenv('CI'))
|
||||
|
|
|
@ -8,5 +8,8 @@ allprojects {
|
|||
isSnapshot = true
|
||||
minAndroidSdk = 10
|
||||
javaSourceCompatibility = 1.8
|
||||
junitVersion = '5.8.2'
|
||||
slf4jVersion = '1.7.32'
|
||||
logbackVersion = '1.2.10'
|
||||
}
|
||||
}
|
||||
|
|
|
@ -17,7 +17,7 @@ dependencies {
|
|||
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:$junitVersion"
|
||||
|
||||
// Arrays.areEqual, Base64...
|
||||
implementation("org.bouncycastle:bcutil-jdk15on:1.70")
|
||||
implementation("org.bouncycastle:bcutil-jdk15to18:1.71")
|
||||
|
||||
// @Nonnull, @Nullable...
|
||||
implementation "com.google.code.findbugs:jsr305:3.0.2"
|
||||
|
|
Loading…
Reference in a new issue