In order to use the {{ include.connector.name }} {{ include.connector.category }} the following dependencies are required for both projects using a build automation tool (such as Maven or SBT) and SQL Client with SQL JAR bundles.

{% comment %} The 'liquify' filter makes it possible to include liquid variables such as e.g. site.version. {% endcomment %} {% if include.connector.versions == nil %} {% if include.connector.built-in %} {% elsif site.is_stable %} {% if include.connector.sql-url != nil %} {% else %} {% endif %} {% else %} {% endif %}
Maven dependency SQL Client JAR
<dependency>
  <groupId>org.apache.flink</groupId>
  <artifactId>{{ include.connector.maven | liquify }}</artifactId>
  <version>{{site.version}}</version>
</dependency>
Built-inDownloadThere is no sql jar available yet.Only available for stable releases.
{% else %} {% for version in include.connector.versions %} {% if include.connector.built-in %} {% elsif include.connector.no-sql-jar %} {% elsif site.is_stable %} {% if version.sql-url != nil %} {% else %} {% endif %} {% else %} {% endif %} {% endfor %}
{{ include.connector.name }} version Maven dependency SQL Client JAR
{{ version.version | liquify }} <dependency>
  <groupId>org.apache.flink</groupId>
  <artifactId>{{ version.maven | liquify }}</artifactId>
  <version>{{site.version}}</version>
</dependency>
Built-inDownloadThere is no sql jar available yet.Only available for stable releases.
{% endif %}