This is an automated email from the ASF dual-hosted git repository.
lzljs3620320 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/paimon.git
The following commit(s) were added to refs/heads/master by this push:
new 6659fb70ec [test] Use new version of kafka docker image
6659fb70ec is described below
commit 6659fb70ecda5268e59138d1117388147af2b842
Author: JingsongLi <[email protected]>
AuthorDate: Sat Feb 28 15:34:04 2026 +0800
[test] Use new version of kafka docker image
---
.../apache/paimon/flink/DockerImageVersions.java | 26 ++++++++++++++++++++++
.../action/cdc/kafka/KafkaActionITCaseBase.java | 2 +-
2 files changed, 27 insertions(+), 1 deletion(-)
diff --git
a/paimon-flink/paimon-flink-cdc/src/test/java/org/apache/paimon/flink/DockerImageVersions.java
b/paimon-flink/paimon-flink-cdc/src/test/java/org/apache/paimon/flink/DockerImageVersions.java
new file mode 100644
index 0000000000..15dcc78aa9
--- /dev/null
+++
b/paimon-flink/paimon-flink-cdc/src/test/java/org/apache/paimon/flink/DockerImageVersions.java
@@ -0,0 +1,26 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package org.apache.paimon.flink;
+
+/** Docker image versions. */
+public class DockerImageVersions {
+
+ public static final String KAFKA = "confluentinc/cp-kafka:7.9.2";
+ public static final String SCHEMA_REGISTRY =
"confluentinc/cp-schema-registry:7.9.2";
+}
diff --git
a/paimon-flink/paimon-flink-cdc/src/test/java/org/apache/paimon/flink/action/cdc/kafka/KafkaActionITCaseBase.java
b/paimon-flink/paimon-flink-cdc/src/test/java/org/apache/paimon/flink/action/cdc/kafka/KafkaActionITCaseBase.java
index ee5a653521..f36dd2bf87 100644
---
a/paimon-flink/paimon-flink-cdc/src/test/java/org/apache/paimon/flink/action/cdc/kafka/KafkaActionITCaseBase.java
+++
b/paimon-flink/paimon-flink-cdc/src/test/java/org/apache/paimon/flink/action/cdc/kafka/KafkaActionITCaseBase.java
@@ -18,13 +18,13 @@
package org.apache.paimon.flink.action.cdc.kafka;
+import org.apache.paimon.flink.DockerImageVersions;
import org.apache.paimon.flink.action.cdc.CdcActionITCaseBase;
import org.apache.paimon.utils.StringUtils;
import
org.apache.paimon.shade.jackson2.com.fasterxml.jackson.core.JsonProcessingException;
import
org.apache.paimon.shade.jackson2.com.fasterxml.jackson.databind.ObjectMapper;
-import org.apache.flink.util.DockerImageVersions;
import org.apache.kafka.clients.admin.AdminClient;
import org.apache.kafka.clients.admin.NewTopic;
import org.apache.kafka.clients.consumer.ConsumerConfig;