mirror of
https://codeberg.org/PGPainless/cert-d-java.git
synced 2024-11-24 00:12:05 +01:00
Document build.gradle files
This commit is contained in:
parent
42ecab5aff
commit
0fee958740
3 changed files with 10 additions and 2 deletions
|
@ -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"
|
||||
}
|
||||
|
||||
|
|
|
@ -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")
|
||||
}
|
||||
|
||||
|
|
|
@ -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"
|
||||
|
||||
|
|
Loading…
Reference in a new issue