wkd-java/wkd-java/build.gradle

37 lines
819 B
Groovy
Raw Permalink Normal View History

2022-02-21 11:51:30 +01:00
// SPDX-FileCopyrightText: 2022 Paul Schaub <vanitasvitae@fsfe.org>
//
// SPDX-License-Identifier: Apache-2.0
plugins {
id 'java-library'
}
group 'org.pgpainless'
repositories {
mavenCentral()
}
dependencies {
2022-04-26 01:23:18 +02:00
// JUnit
2022-02-21 11:51:30 +01:00
testImplementation "org.junit.jupiter:junit-jupiter-api:$junitVersion"
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:$junitVersion"
// Logging
api "org.slf4j:slf4j-api:$slf4jVersion"
testImplementation "ch.qos.logback:logback-classic:$logbackVersion"
2022-04-26 01:23:18 +02:00
// Certificate store
2022-04-29 17:21:16 +02:00
api "org.pgpainless:pgp-certificate-store:$certDJavaVersion"
2022-02-21 11:51:30 +01:00
// Z-Base32
implementation "com.sandinh:zbase32-commons-codec:$zbase32Version"
2022-03-17 15:27:28 +01:00
// @Nullable etc.
2022-04-26 01:12:27 +02:00
implementation "com.google.code.findbugs:jsr305:$jsrVersion"
2022-02-21 11:51:30 +01:00
}
test {
useJUnitPlatform()
}