Skip to content

v1.0.0

Compare
Choose a tag to compare
@linghengqian linghengqian released this 16 Aug 01:38

Full Changelog: https://github.com/linghengqian/hive-server2-jdbc-driver/commits/v1.0.0

This is the first Thin JAR build and an accompanying, intuitive Uber JAR build for the HiveServer2 JDBC driver from apache/hive:rel/release-4.0.0. Fixed all class conflicts.

The steps to use directly in Maven are as follows.
The latest version is available at https://central.sonatype.com/artifact/io.github.linghengqian/hive-server2-jdbc-driver-thin .

<dependencies>
    <dependency>
        <groupId>io.github.linghengqian</groupId>
        <artifactId>hive-server2-jdbc-driver-thin</artifactId>
        <version>1.0.0</version>
    </dependency>
</dependencies>

The current project also provides a HiveServer2 JDBC Driver Uber JAR to simplify the steps of specifying the classifier.
The current JAR also contains fixes for missing classes from the master branch of apache/hive.
The steps to use directly in Maven are as follows.
The latest version is at https://central.sonatype.com/artifact/io.github.linghengqian/hive-server2-jdbc-driver-uber .

<dependencies>
    <dependency>
        <groupId>io.github.linghengqian</groupId>
        <artifactId>hive-server2-jdbc-driver-uber</artifactId>
        <version>1.0.0</version>
    </dependency>
</dependencies>