From 1407de635a93d0be05cad809e6bed845b4f2bd2f Mon Sep 17 00:00:00 2001 From: Prashant15887 Date: Fri, 28 Mar 2025 00:57:10 +0530 Subject: [PATCH] Update maven.md The "Using Maven" page in Flink's latest release documentation populates version of flink-connector-kafka in an example using Flink's version initialized in the config.toml file. As Flink version is set as 2.1-SNAPSHOT in config.toml, the version of flink-connector-kafka also gets populated as the same. However, checking flink-connector-kafka's repository, there is no 2.1-SNAPSHOT there. This causes the mvn build to break at the doc reader's end. To avoid the problem, either we can initialize a new dedicated version variable for flink-connector-kafka in config.toml and use it in this doc page. Or, if it looks like too much of a change for one mention, can we populate an existing flink-connector-kafka version in the doc example so that the reader's build does not break. https://repository.apache.org/content/repositories/snapshots/org/apache/flink/flink-connector-kafka/ --- docs/content/docs/dev/configuration/maven.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/content/docs/dev/configuration/maven.md b/docs/content/docs/dev/configuration/maven.md index 7c93aef90b23e..2ff187270e655 100644 --- a/docs/content/docs/dev/configuration/maven.md +++ b/docs/content/docs/dev/configuration/maven.md @@ -74,7 +74,7 @@ For example, you can add the Kafka connector as a dependency like this: org.apache.flink flink-connector-kafka - {{< version >}} + 1.17-SNAPSHOT