vks-java/vks-java/build.gradle

37 lines
945 B
Groovy
Raw Normal View History

2022-04-06 00:16:32 +02:00
// SPDX-FileCopyrightText: 2022 Paul Schaub <vanitasvitae@fsfe.org>
//
// SPDX-License-Identifier: Apache-2.0
2022-04-05 19:33:20 +02:00
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"
2022-04-06 13:47:37 +02:00
// Arrays.areEqual, Base64...
implementation("org.bouncycastle:bcutil-jdk15to18:1.71")
2022-04-06 13:38:14 +02:00
2022-04-05 19:33:20 +02:00
// @Nonnull, @Nullable...
implementation "com.google.code.findbugs:jsr305:3.0.2"
2022-04-06 13:47:37 +02:00
// Lombok (@SneakyThrows...)
2022-04-05 19:33:20 +02:00
compileOnly 'org.projectlombok:lombok:1.18.22'
annotationProcessor 'org.projectlombok:lombok:1.18.22'
testCompileOnly 'org.projectlombok:lombok:1.18.22'
testAnnotationProcessor 'org.projectlombok:lombok:1.18.22'
2022-04-06 00:16:32 +02:00
// JSON
2022-04-06 13:47:37 +02:00
implementation 'com.fasterxml.jackson.core:jackson-databind:2.13.2.2'
2022-04-05 19:33:20 +02:00
}
test {
useJUnitPlatform()
}