mirror of
https://github.com/pgpainless/pgpainless.git
synced 2024-11-04 19:45:59 +01:00
Paul Schaub
8cb773841b
Integration of certificate-store and pgpainless-cert-d makes packaging complicated. Alternatively, users can simply integrate the certificate-store with PGPainless themselves.
29 lines
925 B
Groovy
29 lines
925 B
Groovy
// SPDX-FileCopyrightText: 2021 Paul Schaub <vanitasvitae@fsfe.org>
|
|
//
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
plugins {
|
|
id 'java-library'
|
|
}
|
|
|
|
dependencies {
|
|
// JUnit
|
|
testImplementation "org.junit.jupiter:junit-jupiter-api:$junitVersion"
|
|
testImplementation "org.junit.jupiter:junit-jupiter-params:$junitVersion"
|
|
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:$junitVersion"
|
|
|
|
// Mocking Components
|
|
testImplementation "org.mockito:mockito-core:$mockitoVersion"
|
|
|
|
// Logging
|
|
api "org.slf4j:slf4j-api:$slf4jVersion"
|
|
testImplementation "ch.qos.logback:logback-classic:$logbackVersion"
|
|
|
|
// Bouncy Castle
|
|
api "org.bouncycastle:bcprov-jdk15to18:$bouncyCastleVersion"
|
|
api "org.bouncycastle:bcpg-jdk15to18:$bouncyPgVersion"
|
|
// api(files("../libs/bcpg-jdk18on-1.70.jar"))
|
|
|
|
// @Nullable, @Nonnull annotations
|
|
implementation "com.google.code.findbugs:jsr305:3.0.2"
|
|
}
|