This is an automated email from the ASF dual-hosted git repository. voonhous pushed a commit to branch release-1.2.1 in repository https://gitbox.apache.org/repos/asf/hudi.git
commit 7c8020b6aa313130c35a4d55d4019f8690e416a2 Author: Geser Dugarov <[email protected]> AuthorDate: Wed Jun 3 17:52:10 2026 +0700 fix(ci): Flink version corresponds to used in Docker image, resolution for Everit JSON schema (#18905) (cherry picked from commit 8ac3092dc4e3dff54235547bc094d621fdafd488) --- packaging/bundle-validation/run_docker_java17.sh | 2 +- pom.xml | 14 ++++++++++---- 2 files changed, 11 insertions(+), 5 deletions(-) diff --git a/packaging/bundle-validation/run_docker_java17.sh b/packaging/bundle-validation/run_docker_java17.sh index a380319a210a..56d19bb14770 100755 --- a/packaging/bundle-validation/run_docker_java17.sh +++ b/packaging/bundle-validation/run_docker_java17.sh @@ -77,7 +77,7 @@ elif [[ ${SPARK_RUNTIME} == 'spark4.0.0' && ${SCALA_PROFILE} == 'scala-2.13' ]]; HADOOP_VERSION=3.4.0 HIVE_VERSION=3.1.3 DERBY_VERSION=10.14.1.0 - FLINK_VERSION=1.18.0 + FLINK_VERSION=1.20.0 SPARK_VERSION=4.0.0 SPARK_HADOOP_VERSION=3 CONFLUENT_VERSION=5.5.12 diff --git a/pom.xml b/pom.xml index 0e556cc76c1c..a7b6e797efec 100644 --- a/pom.xml +++ b/pom.xml @@ -1977,6 +1977,16 @@ <enabled>false</enabled> </snapshots> </repository> + <repository> + <id>confluent</id> + <url>https://packages.confluent.io/maven/</url> + </repository> + <repository> + <!-- Required for com.github.everit-org.json-schema:org.everit.json.schema:1.12.1, + a transitive dep of io.confluent:kafka-json-schema-{serializer,provider} (not on Maven Central). --> + <id>jitpack.io</id> + <url>https://jitpack.io</url> + </repository> <repository> <id>cloudera-repo-releases</id> <url>https://repository.cloudera.com/artifactory/public/</url> @@ -1987,10 +1997,6 @@ <enabled>false</enabled> </snapshots> </repository> - <repository> - <id>confluent</id> - <url>https://packages.confluent.io/maven/</url> - </repository> </repositories> <profiles>
