Skip to content

Commit b168e7f

Browse files
committed
fix(confluent): temporarily cap confluent muzzle version
A recent update in the confluent schema registry introduced jetty-versions which do not exist (9.4.59). There's an upstream PR to fix the issue (confluentinc/kafka-connect-storage-common#468) but while the longer term solution is pursued we are unblocking muzzle tests/main.
1 parent b77fdab commit b168e7f

File tree

1 file changed

+3
-0
lines changed
  • dd-java-agent/instrumentation/confluent-schema-registry/confluent-schema-registry-4.1

1 file changed

+3
-0
lines changed

dd-java-agent/instrumentation/confluent-schema-registry/confluent-schema-registry-4.1/build.gradle

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ muzzle {
66
group = "io.confluent"
77
module = "kafka-schema-registry-client"
88
versions = "[4.1.0,)"
9+
// broken POMs: depend on non-existent org.eclipse.jetty:jetty-bom:9.4.59
10+
// can be fixed after https://github.com/confluentinc/kafka-connect-storage-common/issues/468 is resolved
11+
skipVersions += ['7.4.14', '7.5.13', '7.6.10', '7.7.8', '7.8.7']
912
excludeDependency "org.codehaus.jackson:jackson-mapper-asl" // missing on some releases
1013
assertInverse = true
1114
}

0 commit comments

Comments
 (0)