Skip to content

Commit a305aec

Browse files
Bump com.fasterxml.jackson.core:jackson-core from 2.17.0 to 2.17.1 (#108)
* Bump com.fasterxml.jackson.core:jackson-core from 2.17.0 to 2.17.1 Bumps [com.fasterxml.jackson.core:jackson-core](https://github.com/FasterXML/jackson-core) from 2.17.0 to 2.17.1. - [Commits](FasterXML/jackson-core@jackson-core-2.17.0...jackson-core-2.17.1) --- updated-dependencies: - dependency-name: com.fasterxml.jackson.core:jackson-core dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> * Group version updates for jackson libraries This should make Dependabot group dependency updates to the Jackson libraries, as suggested here: dependabot/dependabot-core#1618 (comment) --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Sander Ploegsma <[email protected]>
1 parent 7bf9c35 commit a305aec

File tree

1 file changed

+9
-6
lines changed

1 file changed

+9
-6
lines changed

build.gradle

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,17 @@ repositories {
1313
}
1414

1515
dependencies {
16-
implementation 'com.google.auto.value:auto-value-annotations:1.10.4'
17-
annotationProcessor 'com.google.auto.value:auto-value:1.10.4'
16+
def autoValueVersion = "1.10.4"
17+
def jacksonVersion = "2.17.1"
18+
19+
implementation "com.google.auto.value:auto-value-annotations:$autoValueVersion"
20+
annotationProcessor "com.google.auto.value:auto-value:$autoValueVersion"
1821
implementation 'com.google.guava:guava:33.1.0-jre'
19-
implementation 'com.fasterxml.jackson.core:jackson-core:2.17.0'
20-
implementation 'com.fasterxml.jackson.core:jackson-databind:2.17.0'
21-
implementation 'com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.17.0'
22+
implementation "com.fasterxml.jackson.core:jackson-core:$jacksonVersion"
23+
implementation "com.fasterxml.jackson.core:jackson-databind:$jacksonVersion"
24+
implementation "com.fasterxml.jackson.datatype:jackson-datatype-jdk8:$jacksonVersion"
2225
implementation 'com.github.javaparser:javaparser-core:3.25.10'
23-
26+
2427
implementation 'org.assertj:assertj-core:3.25.3'
2528
implementation 'org.apiguardian:apiguardian-api:1.1.2' // https://github.com/exercism/java-test-runner/issues/79
2629
implementation platform('org.junit:junit-bom:5.10.2')

0 commit comments

Comments
 (0)