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 2020/02/18 10:54:38 UTC

[commons-geometry] branch master updated: Allow openjdk-ea to fail.

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-geometry.git


The following commit(s) were added to refs/heads/master by this push:
     new 62e0c0a  Allow openjdk-ea to fail.
62e0c0a is described below

commit 62e0c0aad9d36493c048fdfdf9d8d9201ba28f3b
Author: aherbert <ah...@apache.org>
AuthorDate: Tue Feb 18 10:54:34 2020 +0000

    Allow openjdk-ea to fail.
    
    Currently java 14 fails to run spotbugs:check.
    The spotbugs plugin (3.1.12) depends on a groovy version that uses
    reflection to access a private method that was removed in Java 14.
    
    The same bug prevented gradle from working on JDK 14:
    https://github.com/gradle/gradle/issues/10248
---
 .travis.yml | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/.travis.yml b/.travis.yml
index 9eea521..8583f34 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -16,6 +16,11 @@
 language: java
 sudo: false
 
+matrix:
+  allow_failures:
+    # May not yet be supported by all plugins
+    - jdk: openjdk-ea
+
 jdk:
   - openjdk8
   - openjdk10