Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions api/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ List apache = [
List jackson = [
"com.fasterxml.jackson.core:jackson-annotations:${jacksonAnnotationsVersion}",
"com.fasterxml.jackson.core:jackson-core:${jacksonVersion}",
"com.fasterxml.jackson.core:jackson-databind:${jacksonVersion}",
"com.fasterxml.jackson.core:jackson-databind:${jacksonDatabindVersion}",
// added because otherwise we get this error: Java 8 date/time type `java.time.LocalDate` not supported by default
"com.fasterxml.jackson.datatype:jackson-datatype-jsr310:${jacksonVersion}",
// "com.fasterxml.jackson.datatype:jackson-datatype-json-org:${jacksonVersion}" // included separately below so we can exclude the json jar it brings in
Expand Down Expand Up @@ -449,7 +449,7 @@ dependencies {
BuildUtils.addExternalDependency(
project,
new ExternalDependency(
"com.fasterxml.jackson.core:jackson-databind:${jacksonVersion}",
"com.fasterxml.jackson.core:jackson-databind:${jacksonDatabindVersion}",
"Jackson Databind Library",
"Jackson",
"https://github.com/FasterXML/jackson",
Expand Down
2 changes: 1 addition & 1 deletion internal/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ dependencies {
implementation("org.apache.commons:commons-lang3:${commonsLang3Version}")
implementation("junit:junit:${junitVersion}")
implementation("org.springframework:spring-webmvc:${springVersion}")
implementation("com.fasterxml.jackson.core:jackson-databind:${jacksonVersion}")
implementation("com.fasterxml.jackson.core:jackson-databind:${jacksonDatabindVersion}")
implementation("org.quartz-scheduler:quartz:${quartzVersion}")
implementation("org.springframework:spring-beans:${springVersion}")

Expand Down