mirror of
https://codeberg.org/PGPainless/cert-d-java.git
synced 2024-11-05 08:35:58 +01:00
31 lines
687 B
Groovy
31 lines
687 B
Groovy
|
// 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"
|
||
|
testImplementation "org.junit.jupiter:junit-jupiter-params:$junitVersion"
|
||
|
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:$junitVersion"
|
||
|
|
||
|
// Logging
|
||
|
testImplementation "ch.qos.logback:logback-classic:$logbackVersion"
|
||
|
|
||
|
testImplementation project(":pgp-cert-d-java-jdbc-sqlite-lookup")
|
||
|
|
||
|
api project(":pgp-certificate-store")
|
||
|
}
|
||
|
|
||
|
test {
|
||
|
useJUnitPlatform()
|
||
|
}
|