You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by ah...@apache.org on 2019/10/09 16:40:46 UTC

[commons-exec] branch master updated: Require travis 'trusty' distribution for JDK 6

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 4055e40  Require travis 'trusty' distribution for JDK 6
4055e40 is described below

commit 4055e401ef7e4ad763cc69b892135b449baf0f13
Author: aherbert <a....@sussex.ac.uk>
AuthorDate: Wed Oct 9 17:40:42 2019 +0100

    Require travis 'trusty' distribution for JDK 6
    
    See: https://docs.travis-ci.com/user/reference/trusty/#jvm-clojure-groovy-java-scala-images
---
 .travis.yml | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/.travis.yml b/.travis.yml
index 8d829e5..7eaca75 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -16,7 +16,13 @@
 language: java
 sudo: true
 
-dist: xenial
+# Required to build with openjdk6 and 7
+dist: trusty
+
+addons:
+  apt:
+    packages:
+      - openjdk-6-jdk
 
 jdk:
   - openjdk6