cert-d-java/pgp-cert-d-java-jdbc-sqlite.../build.gradle

34 lines
742 B
Groovy
Raw Permalink Normal View History

2022-03-01 15:19:01 +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:38:13 +02:00
// JUnit for testing
2022-03-01 15:19:01 +01:00
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"
2022-04-26 01:38:13 +02:00
// pgp.cert.d cert store
2022-03-01 15:19:01 +01:00
implementation project(":pgp-cert-d-java")
2022-04-26 01:38:13 +02:00
// SQLite
api "org.xerial:sqlite-jdbc:$sqliteJdbcVersion"
2022-03-01 15:19:01 +01:00
}
test {
useJUnitPlatform()
}