Skip to content

Commit

Permalink
Restrict kafka-streams to 2.x versions for now (#4173)
Browse files Browse the repository at this point in the history
  • Loading branch information
trask committed Sep 29, 2021
1 parent 2b67e7c commit 7e744a4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions instrumentation/kafka-streams-0.11/javaagent/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ muzzle {
pass {
group.set("org.apache.kafka")
module.set("kafka-streams")
versions.set("[0.11.0.0,)")
versions.set("[0.11.0.0,3)")
}
}

Expand All @@ -30,9 +30,9 @@ dependencies {
testImplementation("javax.xml.bind:jaxb-api:2.2.3")
testImplementation("org.assertj:assertj-core")

add("latestDepTestImplementation", "org.apache.kafka:kafka_2.13:+")
add("latestDepTestImplementation", "org.apache.kafka:kafka-clients:+")
add("latestDepTestImplementation", "org.apache.kafka:kafka-streams:+")
add("latestDepTestImplementation", "org.apache.kafka:kafka_2.13:2.+")
add("latestDepTestImplementation", "org.apache.kafka:kafka-clients:2.+")
add("latestDepTestImplementation", "org.apache.kafka:kafka-streams:2.+")
add("latestDepTestImplementation", "org.springframework.kafka:spring-kafka:+")
add("latestDepTestImplementation", "org.springframework.kafka:spring-kafka-test:+")
}
Expand Down

0 comments on commit 7e744a4

Please sign in to comment.