You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by ch...@apache.org on 2022/11/10 13:56:51 UTC

[flink] 03/03: [hotfix] Document connector_artifact shortcode

This is an automated email from the ASF dual-hosted git repository.

chesnay pushed a commit to branch release-1.16
in repository https://gitbox.apache.org/repos/asf/flink.git

commit 7ae60884e5e91aa70b009367a5aa4c70b7e137f4
Author: Chesnay Schepler <ch...@apache.org>
AuthorDate: Thu Nov 10 09:38:25 2022 +0100

    [hotfix] Document connector_artifact shortcode
---
 docs/README.md | 14 ++++++++++++++
 1 file changed, 14 insertions(+)

diff --git a/docs/README.md b/docs/README.md
index e1167833496..cafa70664b1 100644
--- a/docs/README.md
+++ b/docs/README.md
@@ -144,6 +144,20 @@ You can also use the shortcodes (with same flags) instead:
 * `artifact_gradle` to show the Gradle syntax
 * `artifact_tabs` to create a tabbed view, showing both Maven and Gradle syntax
 
+#### Flink Connector Artifact
+
+    {{< connector_artifact flink-connector-elasticsearch 3.0.0 >}}
+
+This will be replaced by the maven artifact for flink-connector-elasticsearch that users should copy into their pom.xml file. It will render out to:
+
+```xml
+<dependency>
+    <groupId>org.apache.flink</groupId>
+    <artifactId>flink-connector-elasticsearch</artifactId>
+    <version>3.0.0</version>
+</dependency>
+```
+
 #### Back to Top
 
 	{{< top >}}