mirror of
https://codeberg.org/PGPainless/cert-d-java.git
synced 2024-11-05 08:35:58 +01:00
15 lines
356 B
Groovy
15 lines
356 B
Groovy
// SPDX-FileCopyrightText: 2022 Paul Schaub <info@pgpainless.org>
|
|
//
|
|
// SPDX-License-Identifier: CC0-1.0
|
|
|
|
allprojects {
|
|
ext {
|
|
shortVersion = '0.1.1'
|
|
isSnapshot = true
|
|
minAndroidSdk = 10
|
|
javaSourceCompatibility = 1.8
|
|
slf4jVersion = '1.7.32'
|
|
logbackVersion = '1.2.9'
|
|
junitVersion = '5.8.2'
|
|
}
|
|
}
|