2023-01-05 03:06:22 +01:00
|
|
|
// SPDX-FileCopyrightText: 2021 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"
|
2023-01-22 16:47:44 +01:00
|
|
|
testImplementation "org.junit.jupiter:junit-jupiter-params:$junitVersion"
|
2023-01-05 03:06:22 +01:00
|
|
|
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:$junitVersion"
|
2023-01-22 16:53:50 +01:00
|
|
|
// Read json config file
|
2023-01-22 16:47:44 +01:00
|
|
|
testImplementation "com.google.code.gson:gson:2.10.1"
|
2023-01-05 03:06:22 +01:00
|
|
|
|
|
|
|
api project(":sop-java")
|
2023-01-27 00:35:38 +01:00
|
|
|
testImplementation(testFixtures(project(":sop-java")))
|
2023-01-07 15:23:57 +01:00
|
|
|
|
|
|
|
api "org.slf4j:slf4j-api:$slf4jVersion"
|
|
|
|
testImplementation "ch.qos.logback:logback-classic:$logbackVersion"
|
2023-01-09 19:48:25 +01:00
|
|
|
|
2023-01-12 13:53:49 +01:00
|
|
|
// @Nonnull, @Nullable...
|
|
|
|
implementation "com.google.code.findbugs:jsr305:$jsrVersion"
|
2023-01-05 03:06:22 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
test {
|
|
|
|
useJUnitPlatform()
|
2023-01-22 16:47:44 +01:00
|
|
|
// since we test external backends, we ignore test failures in this module
|
|
|
|
ignoreFailures = true
|
2023-01-05 03:06:22 +01:00
|
|
|
}
|