diff --git a/docs/modules/ROOT/pages/servlet/authentication/passkeys.adoc b/docs/modules/ROOT/pages/servlet/authentication/passkeys.adoc
index dabb1d699f..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]
====
@@ -26,12 +26,7 @@ Maven::
----
org.springframework.security
- spring-security-web
-
-
- com.webauthn4j
- webauthn4j-core
- {webauthn4j-core-version}
+ spring-security-webauthn
----
@@ -40,8 +35,7 @@ Gradle::
[source,groovy,role="secondary",subs="verbatim,attributes"]
----
dependencies {
- implementation "org.springframework.security:spring-security-web"
- implementation "com.webauthn4j:webauthn4j-core:{webauthn4j-core-version}"
+ implementation "org.springframework.security:spring-security-webauthn"
}
----
======