Skip to content
This repository has been archived by the owner on Jul 16, 2022. It is now read-only.

Commit

Permalink
Gradle: add libraries
Browse files Browse the repository at this point in the history
- Add jackson for config file parser
- Add common-io
- Add jasypt to store encrypted passwords

Signed-off-by: Hiroshi Miura <miurahr@linux.com>
  • Loading branch information
miurahr committed Mar 17, 2022
1 parent c88578f commit 5e617a3
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -86,8 +86,16 @@ repositories {
dependencies {
implementation("io.github.eb4j:eb4j:2.3.1")
implementation("org.apache.commons:commons-lang3:3.12.0")
implementation("commons-io:commons-io:2.11.0")
implementation("tokyo.northside:url-protocol-handler:0.1.4")

// preference parser
implementation("com.fasterxml.jackson.core:jackson-core:2.13.2")
implementation("com.fasterxml.jackson.core:jackson-databind:2.13.2")

// Credentials encryption
implementation("org.jasypt:jasypt:1.9.3")

// for pdic
implementation("io.github.eb4j:pdic4j:0.3.3")
// for stardict
Expand Down Expand Up @@ -129,6 +137,10 @@ tasks.getByName<Test>("test") {
}
}

spotbugs {
reportLevel.set(com.github.spotbugs.snom.Confidence.HIGH)
}

jacoco {
toolVersion="0.8.6"
}
Expand Down

0 comments on commit 5e617a3

Please sign in to comment.