Avatica Downloads

Avatica is released as a source artifact, and also through Maven and Docker Hub.

Source releases

Release Date Commit Download
1.13.0 04 Dec 2018 861d05a tar (sha512 pgp)
1.12.0 24 Jun 2018 019a4ec tar (sha256 pgp)
1.11.0 09 Mar 2018 e533391 tar (sha256 pgp)
zip (sha256 pgp)
1.10.0 30 May 2017 fcec4be tar (mds pgp)
zip (mds pgp)
1.9.0 01 Nov 2016 e32d778 tar (md5 pgp)
zip (md5 pgp)
1.8.0 04 Jun 2016 ddfaf07 tar (md5 pgp)
zip (md5 pgp)
1.7.1 18 Mar 2016 11cb0a8 tar (md5 pgp)
zip (md5 pgp)

Choose a source distribution in either tar or zip format.

For fast downloads, current source distributions are hosted on mirror servers; older source distributions are in the archive. If a download from a mirror fails, retry, and the second download will likely succeed.

For security, hash and signature files are always hosted at Apache.

Verify the integrity of the files

You must verify the integrity of the downloaded file using the PGP signature (.asc file) or a hash (.sha256, .md5 for older releases). For more information why this must be done, please read Verifying Apache Software Foundation Releases.

To verify the signature using GPG or PGP, please do the following:

  1. Download the release artifact and the corresponding PGP signature from the table above.
  2. Download the Apache Calcite KEYS file.
  3. Import the KEYS file and verify the downloaded artifact using one of the following methods:
% gpg --import KEYS
% gpg --verify downloaded_file.asc downloaded_file

or

% pgpk -a KEYS
% pgpv downloaded_file.asc

or

% pgp -ka KEYS
% pgp downloaded_file.asc

Maven artifacts

Add the following to the dependencies section of your pom.xml file:

<dependencies>
  <dependency>
    <groupId>org.apache.calcite.avatica</groupId>
    <artifactId>avatica</artifactId>
    <version>1.13.0</version>
  </dependency>
  <dependency>
    <groupId>org.apache.calcite.avatica</groupId>
    <artifactId>avatica-server</artifactId>
    <version>1.13.0</version>
  </dependency>
</dependencies>

As of Apache Calcite Avatica 1.9.0, the following un-shaded client artifact is also available:

<dependencies>
  <dependency>
    <groupId>org.apache.calcite.avatica</groupId>
    <artifactId>avatica-core</artifactId>
    <version>1.13.0</version>
  </dependency>
</dependencies>

Docker images

From release 1.10.0 onwards, Docker images for Avatica Server are available at Docker Hub.