From commits-return-65861-archive-asf-public=cust-asf.ponee.io@commons.apache.org Fri Feb 1 14:22:20 2019 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx-eu-01.ponee.io (Postfix) with SMTP id 83424180627 for ; Fri, 1 Feb 2019 15:22:19 +0100 (CET) Received: (qmail 791 invoked by uid 500); 1 Feb 2019 14:22:18 -0000 Mailing-List: contact commits-help@commons.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@commons.apache.org Delivered-To: mailing list commits@commons.apache.org Received: (qmail 782 invoked by uid 99); 1 Feb 2019 14:22:18 -0000 Received: from ec2-52-202-80-70.compute-1.amazonaws.com (HELO gitbox.apache.org) (52.202.80.70) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 01 Feb 2019 14:22:18 +0000 Received: by gitbox.apache.org (ASF Mail Server at gitbox.apache.org, from userid 33) id F18218578F; Fri, 1 Feb 2019 14:22:17 +0000 (UTC) Date: Fri, 01 Feb 2019 14:22:17 +0000 To: "commits@commons.apache.org" Subject: [commons-vfs] branch master updated: Add Java 11 to Travis builds. MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Message-ID: <154903093793.5283.4103780282069240811@gitbox.apache.org> From: ggregory@apache.org X-Git-Host: gitbox.apache.org X-Git-Repo: commons-vfs X-Git-Refname: refs/heads/master X-Git-Reftype: branch X-Git-Oldrev: ece7e96a93946e107626e3ffb840509c8dffb6ad X-Git-Newrev: 5ef9be4aa336682b8f382182ce85dcefced311bb X-Git-Rev: 5ef9be4aa336682b8f382182ce85dcefced311bb X-Git-NotificationType: ref_changed_plus_diff X-Git-Multimail-Version: 1.5.dev Auto-Submitted: auto-generated This is an automated email from the ASF dual-hosted git repository. ggregory pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-vfs.git The following commit(s) were added to refs/heads/master by this push: new 5ef9be4 Add Java 11 to Travis builds. 5ef9be4 is described below commit 5ef9be4aa336682b8f382182ce85dcefced311bb Author: Gary Gregory AuthorDate: Fri Feb 1 09:22:16 2019 -0500 Add Java 11 to Travis builds. --- .travis.yml | 50 ++++++++++++++++++++++++++------------------------ 1 file changed, 26 insertions(+), 24 deletions(-) diff --git a/.travis.yml b/.travis.yml index 1d28b96..63ebdd1 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,24 +1,26 @@ -# Licensed to the Apache Software Foundation (ASF) under one or more -# contributor license agreements. See the NOTICE file distributed with -# this work for additional information regarding copyright ownership. -# The ASF licenses this file to You under the Apache License, Version 2.0 -# (the "License"); you may not use this file except in compliance with -# the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -language: java -sudo: false - -jdk: - - oraclejdk8 - - openjdk8 - -after_success: - - mvn -V -B -e clean cobertura:cobertura coveralls:report +# Licensed to the Apache Software Foundation (ASF) under one or more +# contributor license agreements. See the NOTICE file distributed with +# this work for additional information regarding copyright ownership. +# The ASF licenses this file to You under the Apache License, Version 2.0 +# (the "License"); you may not use this file except in compliance with +# the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +language: java +sudo: false + +jdk: + - oraclejdk8 + - openjdk8 + - oraclejdk11 + - openjdk11 + +after_success: + - mvn -V -B -e clean cobertura:cobertura coveralls:report