File tree Expand file tree Collapse file tree 4 files changed +5
-0
lines changed
webauthn-server-attestation Expand file tree Collapse file tree 4 files changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -15,6 +15,7 @@ New features:
15
15
as a shortcut for accessing the UV flag in authenticator data.
16
16
* Updated README and JavaDoc to use the "passkey" term and provide more guidance
17
17
around passkey use cases.
18
+ * Added `Automatic-Module-Name` to jar manifest.
18
19
19
20
`webauthn-server-attestation`:
20
21
@@ -24,6 +25,7 @@ New features:
24
25
set to `true`, the BLOB signature will not be verified when loading a BLOB
25
26
from cache or when explicitly given. Default setting is `false`, which
26
27
preserves the previous behaviour.
28
+ * Added `Automatic-Module-Name` to jar manifest.
27
29
28
30
Fixes:
29
31
Original file line number Diff line number Diff line change @@ -72,6 +72,7 @@ tasks["check"].dependsOn(integrationTest)
72
72
tasks.jar {
73
73
manifest {
74
74
attributes(mapOf (
75
+ " Automatic-Module-Name" to " com.yubico.webauthn.attestation" ,
75
76
" Implementation-Id" to " java-webauthn-server-attestation" ,
76
77
" Implementation-Title" to project.description,
77
78
))
Original file line number Diff line number Diff line change @@ -56,6 +56,7 @@ configurations.jmhRuntimeClasspath {
56
56
tasks.withType(Jar ::class ) {
57
57
manifest {
58
58
attributes(mapOf (
59
+ " Automatic-Module-Name" to " com.yubico.webauthn" ,
59
60
" Implementation-Title" to " Yubico Web Authentication server library" ,
60
61
61
62
" 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 {
43
43
tasks.jar {
44
44
manifest {
45
45
attributes(mapOf (
46
+ " Automatic-Module-Name" to " com.yubico.internal.util" ,
46
47
" Implementation-Id" to " yubico-util" ,
47
48
" Implementation-Title" to project.description,
48
49
))
You can’t perform that action at this time.
0 commit comments