Skip to content

Commit eadd964

Browse files
committed
use newer jackson version
1 parent d84b851 commit eadd964

File tree

2 files changed

+9
-6
lines changed

2 files changed

+9
-6
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,3 +21,6 @@
2121

2222
# sdkman
2323
.sdkmanrc
24+
25+
#asdf
26+
.tool-versions

build.gradle

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -47,18 +47,18 @@ nexusStaging {
4747
}
4848

4949
dependencies {
50-
compile "org.jetbrains.kotlin:kotlin-stdlib-jdk8"
51-
compile "org.jetbrains.kotlin:kotlin-reflect"
50+
compile "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$versionKotlin"
51+
compile "org.jetbrains.kotlin:kotlin-reflect:$versionKotlin"
5252
compile "net.bytebuddy:byte-buddy:1.9.12"
5353

54-
compileOnly "com.fasterxml.jackson.core:jackson-databind:2.10.4"
55-
compileOnly "com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.10.4"
54+
compileOnly "com.fasterxml.jackson.core:jackson-databind:2.13.3"
55+
compileOnly "com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.3"
5656

5757
testCompile "org.junit.jupiter:junit-jupiter:5.4.2"
5858
testCompile "org.assertj:assertj-core:3.11.1"
5959
testRuntime "org.slf4j:slf4j-simple:1.7.26"
60-
testCompile "com.fasterxml.jackson.core:jackson-databind:2.10.4"
61-
testCompile "com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.10.4"
60+
testCompile "com.fasterxml.jackson.core:jackson-databind:2.13.3"
61+
testCompile "com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.13.3"
6262
}
6363
configurations.all {
6464
resolutionStrategy.eachDependency { DependencyResolveDetails details ->

0 commit comments

Comments
 (0)