-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Switch to jpms-support branch of webauthn4j to test it works with JPMS
- Loading branch information
Showing
2 changed files
with
21 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
module com.webauthn4j.quarkus.passkeys.poc { | ||
|
||
requires com.webauthn4j.core.async; | ||
|
||
requires com.fasterxml.jackson.core; | ||
requires io.quarkus.security.api; | ||
requires io.smallrye.mutiny; | ||
requires io.vertx.core; | ||
requires io.vertx.web; | ||
requires jakarta.annotation; | ||
requires jakarta.cdi; | ||
requires jakarta.inject; | ||
requires jakarta.transaction; | ||
requires jakarta.ws.rs; | ||
requires org.jboss.logging; | ||
requires quarkus.core; | ||
requires quarkus.security; | ||
requires quarkus.vertx.http; | ||
requires smallrye.config.core; | ||
} |