Skip to content

Commit

Permalink
Switch to jpms-support branch of webauthn4j to test it works with JPMS
Browse files Browse the repository at this point in the history
  • Loading branch information
ynojima committed Oct 11, 2024
1 parent 47030f8 commit b53f92e
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 1 deletion.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
<dependency>
<groupId>com.github.webauthn4j.webauthn4j</groupId>
<artifactId>webauthn4j-core-async</artifactId>
<version>reactive-support-SNAPSHOT</version>
<version>jpms-support-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.dataformat</groupId>
Expand Down
20 changes: 20 additions & 0 deletions src/main/java/module-info.java
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;
}

0 comments on commit b53f92e

Please sign in to comment.