mirror of
https://codeberg.org/PGPainless/sop-java.git
synced 2024-11-16 12:42:05 +01:00
Paul Schaub
fa52df385e
Since picocli 4.7.0, subcommands inherit resources from their parent commands, so we can store shared stuff like error msgs etc. in the parent (sop) resources file. This enables us to rename the parent command downstream (e.g. in pgpainless-cli). Only the help command breaks when renaming the parent command. TODO: Fix
17 lines
424 B
Groovy
17 lines
424 B
Groovy
// SPDX-FileCopyrightText: 2021 Paul Schaub <info@pgpainless.org>
|
|
//
|
|
// SPDX-License-Identifier: CC0-1.0
|
|
|
|
allprojects {
|
|
ext {
|
|
shortVersion = '4.0.1'
|
|
isSnapshot = true
|
|
minAndroidSdk = 10
|
|
javaSourceCompatibility = 1.8
|
|
junitVersion = '5.8.2'
|
|
junitSysExitVersion = '1.1.2'
|
|
picocliVersion = '4.7.0'
|
|
mockitoVersion = '4.5.1'
|
|
jsrVersion = '3.0.2'
|
|
}
|
|
}
|