Skip to content

Commit d7b4fd4

Browse files
committed
Add Automatic-Module-Name to jar manifests
1 parent 62b7312 commit d7b4fd4

File tree

4 files changed

+5
-0
lines changed

4 files changed

+5
-0
lines changed

NEWS

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff 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

2830
Fixes:
2931

webauthn-server-attestation/build.gradle.kts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,7 @@ tasks["check"].dependsOn(integrationTest)
7272
tasks.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
))

webauthn-server-core/build.gradle.kts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ configurations.jmhRuntimeClasspath {
5656
tasks.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",

yubico-util/build.gradle.kts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ configurations.jmhRuntimeClasspath {
4343
tasks.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
))

0 commit comments

Comments
 (0)