mirror of
https://codeberg.org/PGPainless/cert-d-pgpainless.git
synced 2024-12-22 05:17:56 +01:00
Add documentation to build.gradle
This commit is contained in:
parent
765dfac916
commit
81055cd862
2 changed files with 10 additions and 1 deletions
|
@ -13,13 +13,17 @@ repositories {
|
|||
}
|
||||
|
||||
dependencies {
|
||||
// Junit
|
||||
testImplementation "org.junit.jupiter:junit-jupiter-api:$junitVersion"
|
||||
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:$junitVersion"
|
||||
|
||||
// Logging
|
||||
testImplementation "ch.qos.logback:logback-classic:$logbackVersion"
|
||||
|
||||
// pgp.cert.d using PGPainless
|
||||
implementation project(":pgpainless-cert-d")
|
||||
|
||||
// SQL subkey table
|
||||
implementation "org.pgpainless:pgp-cert-d-java-jdbc-sqlite-lookup:$pgpCertDJavaVersion"
|
||||
|
||||
// picocli for cli
|
||||
|
|
|
@ -15,19 +15,24 @@ 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"
|
||||
|
||||
// Mockito for mocking during tests
|
||||
testImplementation "org.mockito:mockito-core:$mockitoVersion"
|
||||
|
||||
// Logging
|
||||
testImplementation "ch.qos.logback:logback-classic:$logbackVersion"
|
||||
|
||||
// PGPainless for OpenPGP
|
||||
api "org.pgpainless:pgpainless-core:$pgpainlessVersion"
|
||||
|
||||
// pgp.cert.d
|
||||
api "org.pgpainless:pgp-cert-d-java:$pgpCertDJavaVersion"
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue