wkd-java/wkd-java/build.gradle

34 lines
752 B
Groovy
Raw 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 {
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-03-10 16:56:46 +01:00
api "org.pgpainless:pgp-certificate-store:0.1.0"
2022-02-21 11:51:30 +01:00
// Z-Base32
implementation 'com.sandinh:zbase32-commons-codec:1.0.0'
2022-03-17 15:27:28 +01:00
// @Nullable etc.
implementation "com.google.code.findbugs:jsr305:3.0.2"
2022-02-21 11:51:30 +01:00
}
test {
useJUnitPlatform()
}