Document build.gradle files

This commit is contained in:
Paul Schaub 2022-04-26 01:38:13 +02:00
parent 42ecab5aff
commit 0fee958740
Signed by: vanitasvitae
GPG Key ID: 62BEE9264BF17311
3 changed files with 10 additions and 2 deletions

View File

@ -13,6 +13,7 @@ repositories {
}
dependencies {
// JUnit for testing
testImplementation "org.junit.jupiter:junit-jupiter-api:$junitVersion"
testImplementation "org.junit.jupiter:junit-jupiter-params:$junitVersion"
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:$junitVersion"
@ -20,7 +21,10 @@ dependencies {
// Logging
testImplementation "ch.qos.logback:logback-classic:$logbackVersion"
// pgp.cert.d cert store
implementation project(":pgp-cert-d-java")
// SQLite
api "org.xerial:sqlite-jdbc:$sqliteJdbcVersion"
}

View File

@ -15,9 +15,10 @@ repositories {
apply plugin: 'ru.vyarus.animalsniffer'
dependencies {
// animal sniffer
// animal sniffer for ensuring Android API compatibility
signature "net.sf.androidscents.signature:android-api-level-${minAndroidSdk}:2.3.3_r2@signature"
// JUnit
testImplementation "org.junit.jupiter:junit-jupiter-api:$junitVersion"
testImplementation "org.junit.jupiter:junit-jupiter-params:$junitVersion"
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:$junitVersion"
@ -25,8 +26,10 @@ dependencies {
// Logging
testImplementation "ch.qos.logback:logback-classic:$logbackVersion"
// SQL Subkey table
testImplementation project(":pgp-cert-d-java-jdbc-sqlite-lookup")
// Certificate store
api project(":pgp-certificate-store")
}

View File

@ -15,9 +15,10 @@ repositories {
apply plugin: 'ru.vyarus.animalsniffer'
dependencies {
// animal sniffer
// animal sniffer for ensuring Android API compatibility
signature "net.sf.androidscents.signature:android-api-level-${minAndroidSdk}:2.3.3_r2@signature"
// JUnit for testing
testImplementation "org.junit.jupiter:junit-jupiter-api:$junitVersion"
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:$junitVersion"