You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by ol...@apache.org on 2021/09/02 09:00:09 UTC

[commons-beanutils] branch 1.X updated: jdk 16/17 do not support target 1.6

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

olamy pushed a commit to branch 1.X
in repository https://gitbox.apache.org/repos/asf/commons-beanutils.git


The following commit(s) were added to refs/heads/1.X by this push:
     new 2b50271  jdk 16/17 do not support target 1.6
2b50271 is described below

commit 2b50271e18caf4e5af5ab77a8cfffaa8cda259f3
Author: Olivier Lamy <ol...@apache.org>
AuthorDate: Thu Sep 2 18:59:53 2021 +1000

    jdk 16/17 do not support target 1.6
    
    Signed-off-by: Olivier Lamy <ol...@apache.org>
---
 .github/workflows/maven.yml | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml
index 4515fad..9e65593 100644
--- a/.github/workflows/maven.yml
+++ b/.github/workflows/maven.yml
@@ -24,11 +24,8 @@ jobs:
     continue-on-error: ${{ matrix.experimental }}
     strategy:
       matrix:
-        java: [ 8, 11, 16 ]
+        java: [ 8, 11 ]
         experimental: [false]
-        include:
-          - java: 17-ea
-            experimental: true
         
     steps:
     - uses: actions/checkout@v2.3.4