pgpainless/pgpainless-core/build.gradle

26 lines
785 B
Groovy
Raw Normal View History

2021-10-07 15:48:52 +02:00
// SPDX-FileCopyrightText: 2021 Paul Schaub <vanitasvitae@fsfe.org>
//
// SPDX-License-Identifier: Apache-2.0
2020-04-11 12:48:07 +02:00
plugins {
id 'java-library'
}
dependencies {
// JUnit
2020-11-13 16:31:59 +01:00
testImplementation "org.junit.jupiter:junit-jupiter-api:$junitVersion"
testImplementation "org.junit.jupiter:junit-jupiter-params:$junitVersion"
2020-11-13 16:31:59 +01:00
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:$junitVersion"
// Logging
2021-09-17 18:05:54 +02:00
api "org.slf4j:slf4j-api:$slf4jVersion"
testImplementation "ch.qos.logback:logback-classic:$logbackVersion"
2022-04-07 19:40:39 +02:00
// Bouncy Castle
api "org.bouncycastle:bcprov-jdk15to18:$bouncyCastleVersion"
api "org.bouncycastle:bcpg-jdk15to18:$bouncyCastleVersion"
2021-08-23 13:29:57 +02:00
// @Nullable, @Nonnull annotations
implementation "com.google.code.findbugs:jsr305:3.0.2"
}