Skip to content

Commit

Permalink
Release v1.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
linghengqian committed Oct 10, 2024
1 parent 03c5324 commit a9d6dca
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 8 deletions.
8 changes: 3 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,7 @@ at https://central.sonatype.com/artifact/io.github.linghengqian/hive-server2-jdb
</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 current project also provides a HiveServer2 JDBC Driver Uber JAR to simplify the steps of specifying the `classifier`.
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 .

Expand All @@ -39,7 +37,7 @@ The latest version is at https://central.sonatype.com/artifact/io.github.linghen
Start a HiveServer2 instance through Docker Engine.

```bash
docker run -d -p 10000:10000 -p 10002:10002 --env SERVICE_NAME=hiveserver2 apache/hive:4.0.0
docker run -d -p 10000:10000 -p 10002:10002 --env SERVICE_NAME=hiveserver2 apache/hive:4.0.1
```

Use third-party builds of this project in any Maven project.
Expand All @@ -49,7 +47,7 @@ Use third-party builds of this project in any Maven project.
<dependency>
<groupId>io.github.linghengqian</groupId>
<artifactId>hive-server2-jdbc-driver-thin</artifactId>
<version>1.4.0</version>
<version>1.5.0</version>
</dependency>
<dependency>
<groupId>com.zaxxer</groupId>
Expand Down
5 changes: 5 additions & 0 deletions doc/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,11 @@

Build from `apache/hive:rel/release-4.0.1`.

```
io.github.linghengqian:hive-server2-jdbc-driver-thin:1.5.0
io.github.linghengqian:hive-server2-jdbc-driver-uber:1.5.0
```

### 1.4.0

Updates Apache-2.0 license header.
Expand Down
2 changes: 1 addition & 1 deletion hive-server2-jdbc-driver-thin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<parent>
<groupId>io.github.linghengqian</groupId>
<artifactId>hive-parent</artifactId>
<version>1.5.0-SNAPSHOT</version>
<version>1.5.0</version>
</parent>

<artifactId>hive-server2-jdbc-driver-thin</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion hive-server2-jdbc-driver-uber/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<parent>
<groupId>io.github.linghengqian</groupId>
<artifactId>hive-parent</artifactId>
<version>1.5.0-SNAPSHOT</version>
<version>1.5.0</version>
</parent>

<artifactId>hive-server2-jdbc-driver-uber</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>io.github.linghengqian</groupId>
<artifactId>hive-parent</artifactId>
<version>1.5.0-SNAPSHOT</version>
<version>1.5.0</version>

<packaging>pom</packaging>
<name>${project.groupId}:${project.artifactId}</name>
Expand Down

0 comments on commit a9d6dca

Please sign in to comment.