Skip to content

Commit c6658a5

Browse files
committed
fix(kafka): 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 b168e7f commit c6658a5

File tree

1 file changed

+14
-0
lines changed
  • dd-java-agent/instrumentation/kafka/kafka-connect-0.11

1 file changed

+14
-0
lines changed

dd-java-agent/instrumentation/kafka/kafka-connect-0.11/build.gradle

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,20 @@ muzzle {
44
module = "connect-runtime"
55
versions = "[0.11.0.0,)"
66
javaVersion = "17"
7+
// broken POMs: depend on non-existent org.eclipse.jetty:jetty-server:9.4.59
8+
// can be fixed after https://github.com/confluentinc/kafka-connect-storage-common/issues/468 is resolved
9+
skipVersions += [
10+
'7.4.14-ce',
11+
'7.4.14-ccs',
12+
'7.5.13-ce',
13+
'7.5.13-ccs',
14+
'7.6.10-ce',
15+
'7.6.10-ccs',
16+
'7.7.8-ce',
17+
'7.7.8-ccs',
18+
'7.8.7-ce',
19+
'7.8.7-ccs'
20+
]
721
excludeDependency "io.confluent.cloud:*"
822
excludeDependency "io.confluent.observability:*"
923
excludeDependency "io.confluent.secure.compute:*"

0 commit comments

Comments
 (0)