You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by se...@apache.org on 2020/06/20 00:05:24 UTC

[commons-validator] branch master updated: Downdate Java to allow for 1.6

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

sebb pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-validator.git


The following commit(s) were added to refs/heads/master by this push:
     new c7a8c10  Downdate Java to allow for 1.6
c7a8c10 is described below

commit c7a8c106067f1583446966b4f91a536eca3f3683
Author: Sebb <se...@apache.org>
AuthorDate: Sat Jun 20 01:05:16 2020 +0100

    Downdate Java to allow for 1.6
---
 .github/workflows/maven.yml | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml
index 713d004..251c8b1 100644
--- a/.github/workflows/maven.yml
+++ b/.github/workflows/maven.yml
@@ -23,7 +23,8 @@ jobs:
     runs-on: ubuntu-latest
     strategy:
       matrix:
-        java: [ 7, 14 ]
+        java: [ 7, 11 ]
+# Later versions of Java don't support 1.6
         
     steps:
     - uses: actions/checkout@v1
@@ -32,5 +33,5 @@ jobs:
       with:
         java-version: ${{ matrix.java }}
     - name: Build with Maven
-      run: mvn -V apache-rat:check package test --file pom.xml
-#      run: mvn -V apache-rat:check javadoc:javadoc -Ddoclint=all package test --file pom.xml
+      run: mvn apache-rat:check package test --file pom.xml
+#      run: mvn apache-rat:check javadoc:javadoc -Ddoclint=all package test --file pom.xml