Upgrade to Jackson Bom 2.16.1

Closes gh-39009
This commit is contained in:
Andy Wilkinson 2024-01-04 16:32:34 +00:00
parent dca46c75c9
commit be4ed3ffc0
2 changed files with 3 additions and 4 deletions

View File

@ -17,11 +17,11 @@ def versions = [:]
new File(projectDir.parentFile, "gradle.properties").withInputStream {
def properties = new Properties()
properties.load(it)
["assertj", "commonsCodec", "hamcrest", "jackson", "junitJupiter",
"kotlin", "maven"].each {
["assertj", "commonsCodec", "hamcrest", "junitJupiter", "kotlin", "maven"].each {
versions[it] = properties[it + "Version"]
}
}
versions["jackson"] = "2.15.3"
versions["springFramework"] = "6.0.12"
ext.set("versions", versions)
if (versions.springFramework.contains("-")) {
@ -136,4 +136,3 @@ eclipse.classpath.file.whenMerged {
jreEntry.entryAttributes['module'] = 'true'
jreEntry.entryAttributes['limit-modules'] = 'java.base'
}

View File

@ -7,7 +7,7 @@ org.gradle.jvmargs=-Xmx2g -Dfile.encoding=UTF-8
assertjVersion=3.25.1
commonsCodecVersion=1.16.0
hamcrestVersion=2.2
jacksonVersion=2.15.3
jacksonVersion=2.16.1
junitJupiterVersion=5.10.1
kotlinVersion=1.9.21
mavenVersion=3.9.4