1
0
Fork 0
mirror of https://github.com/pgpainless/pgpainless.git synced 2025-09-10 18:59:39 +02:00

Moved sop-java and sop-java-picocli to its own repositories

See https://github.com/pgpainless/sop-java
See https://codeberg.org/PGPainless/sop-java
This commit is contained in:
Paul Schaub 2022-01-11 15:18:34 +01:00
parent 9800ca8bd4
commit c6bc8f9774
82 changed files with 11 additions and 5226 deletions

View file

@ -30,6 +30,12 @@ allprojects {
apply plugin: 'jacoco'
apply plugin: 'checkstyle'
// Only generate jar for submodules
// https://stackoverflow.com/a/25445035
jar {
onlyIf { !sourceSets.main.allSource.files.isEmpty() }
}
// For non-sop modules, enable android api compatibility check
if (it.name.equals('pgpainless-core') || it.name.equals('sop-java') || it.name.equals('pgpainless-sop')) {
// animalsniffer
@ -68,6 +74,7 @@ allprojects {
logbackVersion = '1.2.9'
junitVersion = '5.8.2'
picocliVersion = '4.6.2'
sopJavaVersion = '1.1.0'
rootConfigDir = new File(rootDir, 'config')
gitCommit = getGitCommit()
isContinuousIntegrationEnvironment = Boolean.parseBoolean(System.getenv('CI'))