File tree Expand file tree Collapse file tree 5 files changed +7
-3
lines changed
webauthn-server-attestation Expand file tree Collapse file tree 5 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 2
2
3
3
Fixes:
4
4
5
- * Removed version constraints on non-core Jackson modules; Jackson ships its own
6
- BOM constraints to align module versions.
5
+ * Added explicit `dependencyManagement` dependencies on `jackson-bom`, and
6
+ replaced version constraints on other Jackson modules with version constraint
7
+ on `jackson-bom`.
7
8
* Fixed incompatibility with Jackson version 2.15.0-rc1 and later.
8
9
* Fixed linking issue when running in Java 8.
9
10
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ wrapper {
33
33
dependencies {
34
34
constraints {
35
35
api(' com.augustcellars.cose:cose-java:[1.0.0,2)' )
36
- api(' com.fasterxml.jackson.core :jackson-databind :[2.13.2.1,3)' )
36
+ api(' com.fasterxml.jackson:jackson-bom :[2.13.2.1,3)' )
37
37
api(' com.google.guava:guava:[24.1.1,32)' )
38
38
api(' com.upokecenter:cbor:[4.5.1,5)' )
39
39
api(' org.apache.httpcomponents.client5:httpclient5:[5.0.0,6)' )
Original file line number Diff line number Diff line change @@ -30,6 +30,7 @@ dependencies {
30
30
31
31
api(project(" :webauthn-server-core" ))
32
32
33
+ implementation(platform(" com.fasterxml.jackson:jackson-bom" ))
33
34
implementation(project(" :yubico-util" ))
34
35
implementation(" com.fasterxml.jackson.core:jackson-databind" )
35
36
implementation(" org.slf4j:slf4j-api" )
Original file line number Diff line number Diff line change @@ -15,6 +15,7 @@ description = "Yubico WebAuthn server core API"
15
15
dependencies {
16
16
api(platform(rootProject))
17
17
18
+ implementation(platform(" com.fasterxml.jackson:jackson-bom" ))
18
19
implementation(project(" :yubico-util" ))
19
20
implementation(" com.augustcellars.cose:cose-java" )
20
21
implementation(" com.fasterxml.jackson.core:jackson-databind" )
Original file line number Diff line number Diff line change @@ -16,6 +16,7 @@ dependencies {
16
16
api(platform(rootProject))
17
17
18
18
api(" com.fasterxml.jackson.core:jackson-databind" )
19
+ api(platform(" com.fasterxml.jackson:jackson-bom" ))
19
20
20
21
implementation(" com.fasterxml.jackson.dataformat:jackson-dataformat-cbor" )
21
22
implementation(" com.fasterxml.jackson.datatype:jackson-datatype-jdk8" )
You can’t perform that action at this time.
0 commit comments