We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 444aed2 commit 4ed5fd8Copy full SHA for 4ed5fd8
build.gradle
@@ -46,7 +46,13 @@ wrapper {
46
dependencies {
47
constraints {
48
api('com.augustcellars.cose:cose-java:[1.0.0,2)')
49
- api('com.fasterxml.jackson:jackson-bom:2.13.2.20220324')
+ 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
56
api('com.fasterxml.jackson.core:jackson-databind:[2.13.2.1,3)')
57
api('com.fasterxml.jackson.dataformat:jackson-dataformat-cbor:[2.13.2,3)')
58
api('com.fasterxml.jackson.datatype:jackson-datatype-jdk8:[2.13.2,3)')
0 commit comments