Skip to content

Commit

Permalink
Add byte-buddy transitive dependency exclusion
Browse files Browse the repository at this point in the history
Workaround minor issue introduced in Jackson 2.17.0 FasterXML/jackson-databind#4428
  • Loading branch information
chadlwilson committed Mar 17, 2024
1 parent 02fd3a2 commit bf62e84
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 0 additions & 1 deletion server/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -750,7 +750,6 @@ task verifyWar(type: VerifyJarTask) {
"aopalliance-1.0.jar",
"aspectjweaver-${project.versions.aspectj}.jar",
"base-${project.version}.jar",
"byte-buddy-1.14.9.jar",
"cloning-${project.versions.cloning}.jar",
"commandline-${project.version}.jar",
"common-${project.version}.jar",
Expand Down
4 changes: 3 additions & 1 deletion spark/spark-base/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,9 @@ dependencies {

implementation platform(project.deps.jacksonBom)
implementation project.deps.jacksonCore
implementation project.deps.jacksonDatabind
implementation(project.deps.jacksonDatabind) {
exclude(module: 'byte-buddy') // Workaround https://github.com/FasterXML/jackson-databind/issues/4428 until Jackson 2.17.1
}
implementation project.deps.springWeb
implementation project.deps.guava

Expand Down

0 comments on commit bf62e84

Please sign in to comment.