sop-java/version.gradle
Paul Schaub fa52df385e
Split message resources into separate per-command resource files.
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
2022-07-25 19:15:47 +02:00

18 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'
}
}