mirror of
https://codeberg.org/PGPainless/sop-java.git
synced 2024-11-17 13:12:04 +01:00
15 lines
362 B
Groovy
15 lines
362 B
Groovy
// SPDX-FileCopyrightText: 2021 Paul Schaub <info@pgpainless.org>
|
|
//
|
|
// SPDX-License-Identifier: CC0-1.0
|
|
|
|
allprojects {
|
|
ext {
|
|
shortVersion = '1.2.3'
|
|
isSnapshot = true
|
|
minAndroidSdk = 10
|
|
javaSourceCompatibility = 1.8
|
|
junitVersion = '5.8.2'
|
|
junitSysExitVersion = '1.1.2'
|
|
mockitoVersion = '4.5.1'
|
|
}
|
|
}
|