mirror of
https://codeberg.org/PGPainless/wkd-java.git
synced 2024-11-21 14:52:12 +01:00
Document wkd-java-cli build.gradle
This commit is contained in:
parent
43ef11f11a
commit
c882fa679f
1 changed files with 10 additions and 0 deletions
|
@ -14,21 +14,31 @@ repositories {
|
||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
|
// JUnit
|
||||||
testImplementation "org.junit.jupiter:junit-jupiter-api:$junitVersion"
|
testImplementation "org.junit.jupiter:junit-jupiter-api:$junitVersion"
|
||||||
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:$junitVersion"
|
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:$junitVersion"
|
||||||
|
|
||||||
|
// Test CLI Exit Codes
|
||||||
// https://todd.ginsberg.com/post/testing-system-exit/
|
// https://todd.ginsberg.com/post/testing-system-exit/
|
||||||
testImplementation "com.ginsberg:junit5-system-exit:$junitSysExitVersion"
|
testImplementation "com.ginsberg:junit5-system-exit:$junitSysExitVersion"
|
||||||
|
|
||||||
|
// Test using mocked components
|
||||||
testImplementation "org.mockito:mockito-core:$mockitoVersion"
|
testImplementation "org.mockito:mockito-core:$mockitoVersion"
|
||||||
|
|
||||||
|
// Certificates
|
||||||
implementation("org.pgpainless:pgpainless-cert-d:$pgpainlessCertDVersion")
|
implementation("org.pgpainless:pgpainless-cert-d:$pgpainlessCertDVersion")
|
||||||
|
|
||||||
|
// WKD
|
||||||
implementation project(':wkd-java')
|
implementation project(':wkd-java')
|
||||||
|
|
||||||
|
// CLI
|
||||||
implementation "info.picocli:picocli:$picocliVersion"
|
implementation "info.picocli:picocli:$picocliVersion"
|
||||||
|
|
||||||
// Logging
|
// Logging
|
||||||
testImplementation "ch.qos.logback:logback-classic:$logbackVersion"
|
testImplementation "ch.qos.logback:logback-classic:$logbackVersion"
|
||||||
implementation "org.slf4j:slf4j-nop:$slf4jVersion"
|
implementation "org.slf4j:slf4j-nop:$slf4jVersion"
|
||||||
|
|
||||||
|
// Test Suite
|
||||||
testImplementation project(":wkd-test-suite")
|
testImplementation project(":wkd-test-suite")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue