Skip to content

Commit 0c522a8

Browse files
authored
Merge pull request #1053 from webauthn4j/opens-jackson-serializers-deserializers-for-reflection
Opens Jackson serializers and deserializers for reflection
2 parents ca84790 + 75de5ce commit 0c522a8

File tree

3 files changed

+9
-0
lines changed

3 files changed

+9
-0
lines changed

webauthn4j-appattest/src/main/java/module-info.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@
1414
exports com.webauthn4j.appattest.server;
1515
exports com.webauthn4j.appattest.verifier;
1616

17+
opens com.webauthn4j.appattest.converter.jackson.serializer;
18+
1719
opens com.webauthn4j.appattest.data;
1820
opens com.webauthn4j.appattest.data.attestation.statement;
1921
}

webauthn4j-core/src/main/java/module-info.java

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,11 @@
4747
exports com.webauthn4j.verifier.exception;
4848
exports com.webauthn4j.verifier.internal;
4949

50+
opens com.webauthn4j.converter.jackson.serializer.cbor;
51+
opens com.webauthn4j.converter.jackson.serializer.json;
52+
opens com.webauthn4j.converter.jackson.deserializer.cbor;
53+
opens com.webauthn4j.converter.jackson.deserializer.json;
54+
5055
opens com.webauthn4j.data;
5156
opens com.webauthn4j.data.attestation;
5257
opens com.webauthn4j.data.attestation.statement;

webauthn4j-metadata/src/main/java/module-info.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@
1717
exports com.webauthn4j.metadata.exception;
1818
exports com.webauthn4j.metadata.util.internal to com.webauthn4j.metadata.async;
1919

20+
opens com.webauthn4j.metadata.converter.jackson.deserializer;
21+
2022
opens com.webauthn4j.metadata.data;
2123
opens com.webauthn4j.metadata.data.statement;
2224
opens com.webauthn4j.metadata.data.toc;

0 commit comments

Comments
 (0)