Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: ci

on:
- push
- pull_request

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-java@v1
with:
java-version: 1.8
- run: mvn clean install -B -V
1 change: 0 additions & 1 deletion .travis.yml

This file was deleted.

14 changes: 7 additions & 7 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -39,13 +39,13 @@

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.build.targetJdk>1.7</project.build.targetJdk>
<project.build.targetJdk>1.8</project.build.targetJdk>
<shadeBase>io.trino.hive.jdbc.\$internal</shadeBase>
<dep.slf4j.version>1.6.6</dep.slf4j.version>
<dep.hadoop.version>0.20.2</dep.hadoop.version>
<dep.hive.version>0.13.1</dep.hive.version>
<dep.thrift.version>0.12.0</dep.thrift.version>
<dep.guava.version>11.0.2</dep.guava.version>
<dep.slf4j.version>1.7.10</dep.slf4j.version>
<dep.hadoop.version>1.2.1</dep.hadoop.version>
<dep.hive.version>3.1.3</dep.hive.version>

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Update the project version to 3.1.3-1-SNAPSHOT so that it matches the Hive version.

Update the README to use the new version, or simply remove the Hive version from the README.

<dep.thrift.version>0.9.3</dep.thrift.version>
<dep.guava.version>19.0</dep.guava.version>
</properties>

<dependencies>
Expand Down Expand Up @@ -527,7 +527,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>2.3</version>
<version>3.2.4</version>
<executions>
<execution>
<phase>package</phase>
Expand Down