Document dependencies

This commit is contained in:
Paul Schaub 2022-04-06 13:47:37 +02:00
parent edeb34d59e
commit 3e4dfbaa86
Signed by: vanitasvitae
GPG Key ID: 62BEE9264BF17311
2 changed files with 3 additions and 6 deletions

View File

@ -73,7 +73,6 @@ allprojects {
junitVersion = '5.8.2'
slf4jVersion = '1.7.32'
logbackVersion = '1.2.10'
pgpainlessVersion = '1.1.1'
rootConfigDir = new File(rootDir, 'config')
gitCommit = getGitCommit()
isContinuousIntegrationEnvironment = Boolean.parseBoolean(System.getenv('CI'))

View File

@ -16,22 +16,20 @@ dependencies {
testImplementation "org.junit.jupiter:junit-jupiter-api:$junitVersion"
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:$junitVersion"
// Arrays.areEqual, Base64...
implementation("org.bouncycastle:bcutil-jdk15on:1.70")
// api("org.pgpainless:pgp-certificate-store:0.1.0")
// api("org.pgpainless:pgpainless-core:1.1.4")
// @Nonnull, @Nullable...
implementation "com.google.code.findbugs:jsr305:3.0.2"
// Lombok
// Lombok (@SneakyThrows...)
compileOnly 'org.projectlombok:lombok:1.18.22'
annotationProcessor 'org.projectlombok:lombok:1.18.22'
testCompileOnly 'org.projectlombok:lombok:1.18.22'
testAnnotationProcessor 'org.projectlombok:lombok:1.18.22'
// JSON
implementation 'com.fasterxml.jackson.core:jackson-databind:2.13.1'
implementation 'com.fasterxml.jackson.core:jackson-databind:2.13.2.2'
}
test {