pgpainless/version.gradle

24 lines
833 B
Groovy
Raw Normal View History

2021-10-07 15:48:52 +02:00
// SPDX-FileCopyrightText: 2021 Paul Schaub <info@pgpainless.org>
//
// SPDX-License-Identifier: CC0-1.0
allprojects {
ext {
2023-01-13 19:38:37 +01:00
shortVersion = '1.4.3'
isSnapshot = true
2021-02-03 12:42:15 +01:00
pgpainlessMinAndroidSdk = 10
2018-07-18 18:44:38 +02:00
javaSourceCompatibility = 1.8
2022-11-02 10:37:06 +01:00
bouncyCastleVersion = '1.72'
// When using bouncyCastleVersion 1.72:
// unfortunately we rely on 1.72.1 or 1.72.3 for a patch for https://github.com/bcgit/bc-java/issues/1257
2022-11-02 10:37:06 +01:00
// which is a bug we introduced with a PR against BC :/ oops
// When bouncyCastleVersion is 1.71, bouncyPgVersion can simply be set to 1.71 as well.
2022-11-22 14:39:32 +01:00
bouncyPgVersion = '1.72.3'
junitVersion = '5.8.2'
2022-06-20 18:35:31 +02:00
logbackVersion = '1.2.11'
mockitoVersion = '4.5.1'
slf4jVersion = '1.7.36'
2023-01-13 19:30:35 +01:00
sopJavaVersion = '4.1.0'
}
2018-07-31 20:13:30 +02:00
}