Skip to content

Commit

Permalink
Merge pull request #969 from jsonschema2dataclass/renovate/com.faster…
Browse files Browse the repository at this point in the history
…xml.jackson.core-jackson-databind-2.17.x
  • Loading branch information
eirnym authored Jul 5, 2024
2 parents f21ff7a + 55589dd commit 864ea04
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion demo/android-agp7/lib/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ dependencies {
implementation("com.squareup.moshi:moshi:1.15.1")
// Required if generating JSR-303 annotations
implementation("javax.validation:validation-api:2.0.1.Final")
implementation("com.fasterxml.jackson.core:jackson-databind:2.17.1")
implementation("com.fasterxml.jackson.core:jackson-databind:2.17.2")
implementation("androidx.core:core-ktx:1.13.1")
implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8:2.0.0")
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ plugins {
dependencies {
jsonschema2dataclassPlugins(project(":classpath:custom-rule-factory"))

implementation("com.fasterxml.jackson.core:jackson-databind:2.17.1")
implementation("com.fasterxml.jackson.core:jackson-databind:2.17.2")
}

jsonSchema2Pojo {
Expand Down
2 changes: 1 addition & 1 deletion demo/java/classpath/schema-reference/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ plugins {
dependencies {
jsonschema2dataclassPlugins(project(":classpath:schema"))

implementation("com.fasterxml.jackson.core:jackson-databind:2.17.1")
implementation("com.fasterxml.jackson.core:jackson-databind:2.17.2")
}

jsonSchema2Pojo {
Expand Down
2 changes: 1 addition & 1 deletion demo/java/groovy/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ plugins {

dependencies {
implementation 'javax.validation:validation-api:2.0.1.Final'
implementation 'com.fasterxml.jackson.core:jackson-databind:2.17.1'
implementation 'com.fasterxml.jackson.core:jackson-databind:2.17.2'

// see src/main/resources/json/external_dependencies.json
implementation 'joda-time:joda-time:2.12.7'
Expand Down
2 changes: 1 addition & 1 deletion demo/java/kotlin/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ tasks.withType<org.jetbrains.kotlin.gradle.tasks.KotlinCompile>().all {
}
dependencies {
implementation("javax.validation:validation-api:2.0.1.Final")
implementation("com.fasterxml.jackson.core:jackson-databind:2.17.1")
implementation("com.fasterxml.jackson.core:jackson-databind:2.17.2")

// see src/main/resources/json/external_dependencies.json
implementation("joda-time:joda-time:2.12.7")
Expand Down
2 changes: 1 addition & 1 deletion demo/java/model-publish/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ project.version = "1.0"
val targetJSONBaseDir = files("$projectDir/src/main/resources/json")

dependencies {
implementation("com.fasterxml.jackson.core:jackson-databind:2.17.1")
implementation("com.fasterxml.jackson.core:jackson-databind:2.17.2")

// see src/main/resources/json/external_dependencies.json
implementation("joda-time:joda-time:2.12.7")
Expand Down

0 comments on commit 864ea04

Please sign in to comment.