pgpainless/pgpainless-core/build.gradle

23 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 {
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"
2021-09-17 18:05:54 +02:00
testImplementation 'ch.qos.logback:logback-classic:1.2.5'
2020-11-13 16:31:59 +01:00
2021-09-17 18:05:54 +02:00
api "org.slf4j:slf4j-api:$slf4jVersion"
2021-09-17 18:05:54 +02:00
api "org.bouncycastle:bcprov-jdk15on:$bouncyCastleVersion"
2020-04-11 12:48:07 +02:00
api "org.bouncycastle:bcpg-jdk15on:$bouncyCastleVersion"
2021-08-23 13:29:57 +02:00
// https://mvnrepository.com/artifact/com.google.code.findbugs/jsr305
2020-01-09 19:05:22 +01:00
implementation group: 'com.google.code.findbugs', name: 'jsr305', version: '3.0.2'
}