From c59fb0cd353334ae78b135599a91065c621d9c7f Mon Sep 17 00:00:00 2001 From: Josh Cummings <3627351+jzheaux@users.noreply.github.com> Date: Tue, 10 Feb 2026 18:08:28 -0700 Subject: [PATCH] Add Jackson 2 Databind as Optional Dependency Since spring-security-webauthn has Jackson 2 Mixins, it would be clearer to set Jackson 2 explicitly as an optional dependency Signed-off-by: Josh Cummings <3627351+jzheaux@users.noreply.github.com> --- webauthn/spring-security-webauthn.gradle | 2 ++ 1 file changed, 2 insertions(+) diff --git a/webauthn/spring-security-webauthn.gradle b/webauthn/spring-security-webauthn.gradle index b289714464..5805f68e97 100644 --- a/webauthn/spring-security-webauthn.gradle +++ b/webauthn/spring-security-webauthn.gradle @@ -16,10 +16,12 @@ dependencies { optional 'org.springframework:spring-jdbc' optional 'org.springframework:spring-tx' optional 'tools.jackson.core:jackson-databind' + optional 'com.fasterxml.jackson.core:jackson-databind' provided 'jakarta.servlet:jakarta.servlet-api' testImplementation project(path: ':spring-security-core', configuration: 'tests') + testImplementation 'com.fasterxml.jackson.dataformat:jackson-dataformat-cbor' testImplementation 'io.projectreactor:reactor-test' testImplementation 'jakarta.xml.bind:jakarta.xml.bind-api' testImplementation 'jakarta.websocket:jakarta.websocket-api'