mirror of
https://codeberg.org/PGPainless/vks-java.git
synced 2024-11-22 07:22:06 +01:00
Document dependencies
This commit is contained in:
parent
edeb34d59e
commit
3e4dfbaa86
2 changed files with 3 additions and 6 deletions
|
@ -73,7 +73,6 @@ allprojects {
|
||||||
junitVersion = '5.8.2'
|
junitVersion = '5.8.2'
|
||||||
slf4jVersion = '1.7.32'
|
slf4jVersion = '1.7.32'
|
||||||
logbackVersion = '1.2.10'
|
logbackVersion = '1.2.10'
|
||||||
pgpainlessVersion = '1.1.1'
|
|
||||||
rootConfigDir = new File(rootDir, 'config')
|
rootConfigDir = new File(rootDir, 'config')
|
||||||
gitCommit = getGitCommit()
|
gitCommit = getGitCommit()
|
||||||
isContinuousIntegrationEnvironment = Boolean.parseBoolean(System.getenv('CI'))
|
isContinuousIntegrationEnvironment = Boolean.parseBoolean(System.getenv('CI'))
|
||||||
|
|
|
@ -16,22 +16,20 @@ dependencies {
|
||||||
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"
|
||||||
|
|
||||||
|
// Arrays.areEqual, Base64...
|
||||||
implementation("org.bouncycastle:bcutil-jdk15on:1.70")
|
implementation("org.bouncycastle:bcutil-jdk15on:1.70")
|
||||||
|
|
||||||
// api("org.pgpainless:pgp-certificate-store:0.1.0")
|
|
||||||
// api("org.pgpainless:pgpainless-core:1.1.4")
|
|
||||||
|
|
||||||
// @Nonnull, @Nullable...
|
// @Nonnull, @Nullable...
|
||||||
implementation "com.google.code.findbugs:jsr305:3.0.2"
|
implementation "com.google.code.findbugs:jsr305:3.0.2"
|
||||||
|
|
||||||
// Lombok
|
// Lombok (@SneakyThrows...)
|
||||||
compileOnly 'org.projectlombok:lombok:1.18.22'
|
compileOnly 'org.projectlombok:lombok:1.18.22'
|
||||||
annotationProcessor 'org.projectlombok:lombok:1.18.22'
|
annotationProcessor 'org.projectlombok:lombok:1.18.22'
|
||||||
testCompileOnly 'org.projectlombok:lombok:1.18.22'
|
testCompileOnly 'org.projectlombok:lombok:1.18.22'
|
||||||
testAnnotationProcessor 'org.projectlombok:lombok:1.18.22'
|
testAnnotationProcessor 'org.projectlombok:lombok:1.18.22'
|
||||||
|
|
||||||
// JSON
|
// JSON
|
||||||
implementation 'com.fasterxml.jackson.core:jackson-databind:2.13.1'
|
implementation 'com.fasterxml.jackson.core:jackson-databind:2.13.2.2'
|
||||||
}
|
}
|
||||||
|
|
||||||
test {
|
test {
|
||||||
|
|
Loading…
Reference in a new issue