mirror of
https://github.com/spring-projects/spring-boot.git
synced 2026-09-17 12:09:16 +00:00
Upgrade to Kafka 4.1.2
See also https://github.com/yawkat/lz4-java/wiki/Gradle-and-org.lz4:lz4%E2%80%90java:1.8.1 Closes gh-49627
This commit is contained in:
@@ -371,9 +371,16 @@ configurations {
|
||||
attribute(Usage.USAGE_ATTRIBUTE, objects.named(Usage, Usage.JAVA_RUNTIME))
|
||||
}
|
||||
extendsFrom configurations.javadoc
|
||||
resolutionStrategy.eachDependency {
|
||||
if (it.requested.group == 'org.opensaml') {
|
||||
it.useVersion '4.0.1'
|
||||
resolutionStrategy {
|
||||
capabilitiesResolution {
|
||||
withCapability("org.lz4:lz4-java") {
|
||||
select(candidates.find { ((ModuleComponentIdentifier) it.id).group == "at.yawk.lz4" })
|
||||
}
|
||||
}
|
||||
eachDependency {
|
||||
if (it.requested.group == 'org.opensaml') {
|
||||
it.useVersion '4.0.1'
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1172,7 +1172,7 @@ bom {
|
||||
releaseNotes("https://junit.org/junit5/docs/{version}/release-notes")
|
||||
}
|
||||
}
|
||||
library("Kafka", "4.1.1") {
|
||||
library("Kafka", "4.1.2") {
|
||||
group("org.apache.kafka") {
|
||||
modules = [
|
||||
"connect",
|
||||
|
||||
Reference in New Issue
Block a user