Skip to content

Commit 3840cf4

Browse files
committed
Drop unneeded dependencies
1 parent ec4d8d9 commit 3840cf4

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

NEWS

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ Fixes:
3535
* Fixed various typos and mistakes in JavaDocs.
3636
* Moved version constraints for test dependencies from meta-module
3737
`webauthn-server-parent` to unpublished test meta-module.
38+
* `yubico-util` dependency removed from downstream compile scope.
3839

3940

4041
`webauthn-server-attestation`:
@@ -50,6 +51,8 @@ Fixes:
5051
* `FidoMetadataDownloader` now verifies the SHA-256 hash of the cached trust
5152
root certificate, as promised in the JavaDoc of `useTrustRootCacheFile` and
5253
`useTrustRootCache`.
54+
* BouncyCastle dependency dropped.
55+
* Guava dependency dropped (but still remains in core module).
5356

5457

5558
== Version 2.0.0 ==

webauthn-server-attestation/build.gradle.kts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,7 @@ dependencies {
3737
api(project(":webauthn-server-core"))
3838

3939
implementation(project(":yubico-util"))
40-
implementation("com.google.guava:guava")
4140
implementation("com.fasterxml.jackson.core:jackson-databind")
42-
implementation("org.bouncycastle:bcprov-jdk18on")
4341
implementation("org.slf4j:slf4j-api")
4442

4543
testImplementation(platform(project(":test-platform")))

webauthn-server-core/build.gradle.kts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,7 @@ java {
2020
dependencies {
2121
api(platform(rootProject))
2222

23-
api(project(":yubico-util"))
24-
23+
implementation(project(":yubico-util"))
2524
implementation("com.augustcellars.cose:cose-java")
2625
implementation("com.fasterxml.jackson.core:jackson-databind")
2726
implementation("com.google.guava:guava")

0 commit comments

Comments
 (0)