File tree Expand file tree Collapse file tree
webauthn-server-attestation Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -15,6 +15,7 @@ New features:
1515 as a shortcut for accessing the UV flag in authenticator data.
1616* Updated README and JavaDoc to use the "passkey" term and provide more guidance
1717 around passkey use cases.
18+ * Added `Automatic-Module-Name` to jar manifest.
1819
1920`webauthn-server-attestation`:
2021
@@ -24,6 +25,7 @@ New features:
2425 set to `true`, the BLOB signature will not be verified when loading a BLOB
2526 from cache or when explicitly given. Default setting is `false`, which
2627 preserves the previous behaviour.
28+ * Added `Automatic-Module-Name` to jar manifest.
2729
2830Fixes:
2931
Original file line number Diff line number Diff line change @@ -72,6 +72,7 @@ tasks["check"].dependsOn(integrationTest)
7272tasks.jar {
7373 manifest {
7474 attributes(mapOf (
75+ " Automatic-Module-Name" to " com.yubico.webauthn.attestation" ,
7576 " Implementation-Id" to " java-webauthn-server-attestation" ,
7677 " Implementation-Title" to project.description,
7778 ))
Original file line number Diff line number Diff line change @@ -56,6 +56,7 @@ configurations.jmhRuntimeClasspath {
5656tasks.withType(Jar ::class ) {
5757 manifest {
5858 attributes(mapOf (
59+ " Automatic-Module-Name" to " com.yubico.webauthn" ,
5960 " Implementation-Title" to " Yubico Web Authentication server library" ,
6061
6162 " Specification-Title" to " Web Authentication: An API for accessing Public Key Credentials" ,
Original file line number Diff line number Diff line change @@ -43,6 +43,7 @@ configurations.jmhRuntimeClasspath {
4343tasks.jar {
4444 manifest {
4545 attributes(mapOf (
46+ " Automatic-Module-Name" to " com.yubico.internal.util" ,
4647 " Implementation-Id" to " yubico-util" ,
4748 " Implementation-Title" to project.description,
4849 ))
You can’t perform that action at this time.
0 commit comments