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
14 changes: 14 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -255,6 +255,13 @@ project(':cruise-control') {
exclude group: 'org.slf4j', module: 'slf4j-log4j12'
exclude group: 'log4j', module: 'log4j'
}

constraints {
implementation('com.fasterxml.jackson.core:jackson-databind:2.12.6.1') {
because 'Prior version is vulnerable. Can be unpinned after Apache Kafka 3.1.1 is released and pulled in.'
}
}

Comment thread
efeg marked this conversation as resolved.
api project(':cruise-control-metrics-reporter')
api project(':cruise-control-core')
implementation "org.slf4j:slf4j-api:1.7.36"
Expand Down Expand Up @@ -396,6 +403,13 @@ project(':cruise-control-metrics-reporter') {
exclude group: 'org.slf4j', module: 'slf4j-log4j12'
exclude group: 'log4j', module: 'log4j'
}

constraints {
implementation('com.fasterxml.jackson.core:jackson-databind:2.12.6.1') {
because 'Prior version is vulnerable. Can be unpinned after Apache Kafka 3.1.1 is released and pulled in.'
}
}

implementation "org.slf4j:slf4j-api:1.7.36"
implementation "com.yammer.metrics:metrics-core:2.2.0"
implementation "org.apache.logging.log4j:log4j-slf4j-impl:2.17.2"
Expand Down