Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ muzzle {
group = 'com.fasterxml.jackson.core'
module = 'jackson-core'
versions = "[2.0.0,)"
skipVersions = ['2.22.0'] // missing in Maven Central
assertInverse = true
}

Expand All @@ -11,6 +12,7 @@ muzzle {
group = 'com.fasterxml.jackson.core'
module = 'jackson-databind'
versions = "[2.0.0,)"
skipVersions = ['2.22.0'] // missing in Maven Central
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P1 Badge Exclude the bad Jackson version from latestDepTest too

This only removes jackson-databind:2.22.0 from the muzzle version scan; the same project still has latestDepTestImplementation ... jackson-databind: '2.+', so the latest-dependency test configuration can still select 2.22.0 and then fail resolving its missing jackson-core:2.22.0 transitive dependency. Please also reject/pin this version for the latestDepTest dependency path, otherwise the CI failure this change is trying to avoid can remain.

Useful? React with 👍 / 👎.

assertInverse = true
}
}
Expand Down
Loading