You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by ma...@apache.org on 2019/06/19 08:34:15 UTC

[commons-daemon] branch master updated: Update .travis.yml

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

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


The following commit(s) were added to refs/heads/master by this push:
     new e90fe00  Update .travis.yml
e90fe00 is described below

commit e90fe00daa759f07e2c36c44e67d1cf45272449a
Author: Mark Thomas <ma...@apache.org>
AuthorDate: Wed Jun 19 09:34:11 2019 +0100

    Update .travis.yml
    
    Exclude Java 7 (and 6) builds from Travis and document why
---
 .travis.yml | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/.travis.yml b/.travis.yml
index 5cbea3a..b0d2d3a 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -18,7 +18,10 @@ sudo: false
 
 jdk:
   - oraclejdk11
-  - openjdk7
+# Commons Daemon has a minimum Java version of Java 6
+# Travis does not appear to support Java 6 or Java 7
+#  - openjdk6
+#  - openjdk7
   - openjdk8
   - openjdk9
   - openjdk10