Skip to content

Commit 62d812a

Browse files
committed
dep fixes
1 parent 0c1ec65 commit 62d812a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

build.gradle.kts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -69,13 +69,13 @@ dependencies {
6969
// https://mvnrepository.com/artifact/com.google.code.gson/gson
7070
implementation("com.google.code.gson:gson:2.13.2")
7171

72-
val jacksonVersion = "2.21.0"
72+
val jacksonVersion = "2.20.2"
7373
// https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-core
7474
implementation("com.fasterxml.jackson.core:jackson-core:$jacksonVersion")
7575
// https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-databind
7676
implementation("com.fasterxml.jackson.core:jackson-databind:$jacksonVersion")
7777
// https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-annotations
78-
implementation("com.fasterxml.jackson.core:jackson-annotations:2.21")
78+
implementation("com.fasterxml.jackson.core:jackson-annotations:2.20")
7979

8080
// https://mvnrepository.com/artifact/com.h2database/h2
8181
// NOTE: 2.4.240 caused a problem where Ukulele couldn't join the channel for some reason.
@@ -113,7 +113,7 @@ configurations.all {
113113
resolutionStrategy.dependencySubstitution {
114114
// logback issue requiring both substitutions: https://github.com/qos-ch/logback/issues/890
115115
// https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-core
116-
val jacksonVersion = "2.21.0"
116+
val jacksonVersion = "2.20.2"
117117
substitute(module("com.fasterxml.jackson:jackson-bom")).using(module("com.fasterxml.jackson:jackson-bom:$jacksonVersion"))
118118
substitute(module("com.fasterxml.jackson.core:jackson-annotations")).using(module("com.fasterxml.jackson.core:jackson-annotations:2.20"))
119119
substitute(module("com.fasterxml.jackson.core:jackson-core")).using(module("com.fasterxml.jackson.core:jackson-core:$jacksonVersion"))

0 commit comments

Comments
 (0)