Skip to content

Commit 4ed5fd8

Browse files
committed
Replace jackson-bom minimum version with specific version exclusion
1 parent 444aed2 commit 4ed5fd8

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

build.gradle

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,13 @@ wrapper {
4646
dependencies {
4747
constraints {
4848
api('com.augustcellars.cose:cose-java:[1.0.0,2)')
49-
api('com.fasterxml.jackson:jackson-bom:2.13.2.20220324')
49+
api('com.fasterxml.jackson:jackson-bom') {
50+
version {
51+
strictly '[2.13.2.1,3)'
52+
reject '2.13.2.1'
53+
}
54+
because 'jackson-databind 2.13.2.1 references nonexistent BOM'
55+
}
5056
api('com.fasterxml.jackson.core:jackson-databind:[2.13.2.1,3)')
5157
api('com.fasterxml.jackson.dataformat:jackson-dataformat-cbor:[2.13.2,3)')
5258
api('com.fasterxml.jackson.datatype:jackson-datatype-jdk8:[2.13.2,3)')

0 commit comments

Comments
 (0)