From 5b2fb8d338d58cdd95469cd9d3bcad7762b3ab42 Mon Sep 17 00:00:00 2001 From: Devon Hillard Date: Tue, 17 Mar 2026 09:48:22 -0600 Subject: [PATCH] fix(deps): remove redundant webauthn4j-core direct dependency The webauthn4j-core implementation dependency was added by mistake. Spring Security's spring-security-webauthn already provides it transitively, and the codebase has no direct imports of com.webauthn4j.* classes. Keeping it as an implementation dependency unnecessarily forces it onto consuming applications. Closes #280 --- build.gradle | 1 - 1 file changed, 1 deletion(-) diff --git a/build.gradle b/build.gradle index 233c729..1058748 100644 --- a/build.gradle +++ b/build.gradle @@ -53,7 +53,6 @@ dependencies { // WebAuthn support (Passkey authentication) compileOnly 'org.springframework.security:spring-security-webauthn' - implementation 'com.webauthn4j:webauthn4j-core:0.31.1.RELEASE' // Lombok dependencies compileOnly "org.projectlombok:lombok:$lombokVersion"