You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@calcite.apache.org by jh...@apache.org on 2021/12/27 08:59:06 UTC

[calcite] branch master updated: [CALCITE-4547] Support Java 16 and 17

This is an automated email from the ASF dual-hosted git repository.

jhyde pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/calcite.git


The following commit(s) were added to refs/heads/master by this push:
     new f79624a  [CALCITE-4547] Support Java 16 and 17
f79624a is described below

commit f79624a07feabee16376b519283cf375b76b8b9f
Author: ILuffZhe <il...@163.com>
AuthorDate: Wed Dec 22 09:28:40 2021 +0800

    [CALCITE-4547] Support Java 16 and 17
    
    Close apache/calcite#2656
---
 .travis.yml         | 6 ++++++
 site/_docs/howto.md | 2 +-
 2 files changed, 7 insertions(+), 1 deletion(-)

diff --git a/.travis.yml b/.travis.yml
index 89f0d1b..a54c89f 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -44,6 +44,12 @@ matrix:
     - jdk: openjdk15
       env:
         - GUAVA=31.0.1-jre # newest supported Guava version
+    - jdk: openjdk16
+      env:
+        - GUAVA=31.0.1-jre
+    - jdk: openjdk17
+      env:
+        - GUAVA=31.0.1-jre
 branches:
   only:
     - master
diff --git a/site/_docs/howto.md b/site/_docs/howto.md
index b406a50..45d3e3a 100644
--- a/site/_docs/howto.md
+++ b/site/_docs/howto.md
@@ -51,7 +51,7 @@ tests  (but you should use the `gradle` command rather than
 ## Building from Git
 
 Prerequisites are git
-and Java (JDK 8, 9, 10, 11, 12, 13, 14 or 15) on your path.
+and Java (JDK 8, 9, 10, 11, 12, 13, 14, 15, 16 or 17) on your path.
 
 Create a local copy of the GitHub repository,
 `cd` to its root directory,