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 %}
Maven dependency |
SQL Client JAR |
{{ include.connector.maven | liquify }} |
{% if include.connector.built-in %}
Built-in |
{% elsif site.is_stable %}
{% if include.connector.sql-url != nil %}
Download |
{% else %}
There is no sql jar available yet. |
{% endif %}
{% else %}
Only available for stable releases. |
{% endif %}
{% else %}
{{ include.connector.name }} version |
Maven dependency |
SQL Client JAR |
{% for version in include.connector.versions %}
{{ version.version | liquify }} |
{{ version.maven | liquify }} |
{% if include.connector.built-in %}
Built-in |
{% elsif include.connector.no-sql-jar %}
{% elsif site.is_stable %}
{% if version.sql-url != nil %}
Download |
{% else %}
There is no sql jar available yet. |
{% endif %}
{% else %}
Only available for stable releases. |
{% endif %}
{% endfor %}
{% endif %}