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'
|
|
|
|
}
|
|
|
|
|
2018-07-18 18:23:06 +02:00
|
|
|
dependencies {
|
2020-11-13 16:31:59 +01:00
|
|
|
testImplementation "org.junit.jupiter:junit-jupiter-api:$junitVersion"
|
2021-02-25 23:27:08 +01:00
|
|
|
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-10-29 20:28:14 +02:00
|
|
|
// Logging
|
2021-09-17 18:05:54 +02:00
|
|
|
api "org.slf4j:slf4j-api:$slf4jVersion"
|
2021-10-29 20:28:14 +02:00
|
|
|
testImplementation "ch.qos.logback:logback-classic:$logbackVersion"
|
|
|
|
runtime "ch.qos.logback:logback-classic:$logbackVersion"
|
2021-08-23 15:47:21 +02:00
|
|
|
|
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
|
|
|
|
2018-07-31 20:09:16 +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'
|
2018-07-18 18:23:06 +02:00
|
|
|
}
|