File tree 1 file changed +6
-2
lines changed
1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -22,14 +22,18 @@ repositories {
22
22
mavenCentral()
23
23
}
24
24
25
+ ext {
26
+ jacksonVersion = ' 2.14.2'
27
+ }
28
+
25
29
dependencies {
26
30
// JUnit setup for testing
27
31
testImplementation(platform(" org.junit:junit-bom:5.9.2" ))
28
32
testImplementation ' org.junit.jupiter:junit-jupiter-api'
29
33
testRuntimeOnly ' org.junit.jupiter:junit-jupiter-engine'
30
34
// JSON object mapping / (de-)serialization
31
- implementation ' com.fasterxml.jackson.core:jackson-databind:2.14.1 '
32
- implementation ' com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.14.1 '
35
+ implementation " com.fasterxml.jackson.core:jackson-databind:${ jacksonVersion } "
36
+ implementation " com.fasterxml.jackson.datatype:jackson-datatype-jsr310:${ jacksonVersion } "
33
37
// http client
34
38
implementation group : ' org.apache.httpcomponents' , name : ' httpclient' , version : ' 4.5.14'
35
39
// common file system operations
You can’t perform that action at this time.
0 commit comments