From 26937bf06c28876c866e8ad43075fa58f4e22d23 Mon Sep 17 00:00:00 2001 From: Robert Winch <362503+rwinch@users.noreply.github.com> Date: Mon, 9 Mar 2026 14:25:08 -0500 Subject: [PATCH] Remove unnecessary webauthn4j dependency --- .../ROOT/pages/servlet/authentication/passkeys.adoc | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/docs/modules/ROOT/pages/servlet/authentication/passkeys.adoc b/docs/modules/ROOT/pages/servlet/authentication/passkeys.adoc index 534eef12b2..8f21a7b12a 100644 --- a/docs/modules/ROOT/pages/servlet/authentication/passkeys.adoc +++ b/docs/modules/ROOT/pages/servlet/authentication/passkeys.adoc @@ -10,7 +10,7 @@ After the credential is registered, it can be used to authenticate by xref:servl [[passkeys-dependencies]] == Required Dependencies -To get started, add the `webauthn4j-core` dependency to your project. +To get started, add the `spring-security-webauthn` dependency to your project. [NOTE] ==== @@ -28,11 +28,6 @@ Maven:: org.springframework.security spring-security-webauthn - - com.webauthn4j - webauthn4j-core - {webauthn4j-core-version} - ---- Gradle:: @@ -41,7 +36,6 @@ Gradle:: ---- dependencies { implementation "org.springframework.security:spring-security-webauthn" - implementation "com.webauthn4j:webauthn4j-core:{webauthn4j-core-version}" } ---- ======