Skip to content

Commit

Permalink
Bind jackson dependencies to a common version.
Browse files Browse the repository at this point in the history
  • Loading branch information
Pfeil committed Feb 1, 2023
1 parent 3bfeec3 commit 20af22a
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,18 @@ repositories {
mavenCentral()
}

ext {
jacksonVersion = '2.14.2'
}

dependencies {
// JUnit setup for testing
testImplementation(platform("org.junit:junit-bom:5.9.2"))
testImplementation 'org.junit.jupiter:junit-jupiter-api'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine'
// JSON object mapping / (de-)serialization
implementation 'com.fasterxml.jackson.core:jackson-databind:2.14.1'
implementation 'com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.14.1'
implementation "com.fasterxml.jackson.core:jackson-databind:${jacksonVersion}"
implementation "com.fasterxml.jackson.datatype:jackson-datatype-jsr310:${jacksonVersion}"
// http client
implementation group: 'org.apache.httpcomponents', name: 'httpclient', version: '4.5.14'
// common file system operations
Expand Down

0 comments on commit 20af22a

Please sign in to comment.