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
|
2022-04-26 01:35:40 +02:00
|
|
|
api "org.xerial:sqlite-jdbc:$sqliteJdbcVersion"
|
2022-03-01 15:19:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
test {
|
|
|
|
useJUnitPlatform()
|
|
|
|
}
|