You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by pa...@apache.org on 2019/07/02 05:30:33 UTC

[commons-lang] branch master updated (9fd7ad2 -> 456f92c)

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

pascalschumacher pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/commons-lang.git.


    from 9fd7ad2  Oracle JDK 8 and 11 are no longer available on travis.
     new f810c82  Skip Jacoco and SpotBugs on Java 13+.
     new 456f92c  Add Java 13 build on Travis CI (openjdk-ea is now Java 14).

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .travis.yml |  1 +
 pom.xml     | 12 ++++++++++++
 2 files changed, 13 insertions(+)


[commons-lang] 01/02: Skip Jacoco and SpotBugs on Java 13+.

Posted by pa...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit f810c8283783650f3a000f8ab9aa7911b2b77ab4
Author: pascalschumacher <pa...@gmx.net>
AuthorDate: Mon Jul 1 22:44:40 2019 +0200

    Skip Jacoco and SpotBugs on Java 13+.
---
 pom.xml | 12 ++++++++++++
 1 file changed, 12 insertions(+)

diff --git a/pom.xml b/pom.xml
index 6ba59df..8f2f6b4 100644
--- a/pom.xml
+++ b/pom.xml
@@ -904,6 +904,18 @@
         <coveralls.skip>true</coveralls.skip>
       </properties>
     </profile>
+    <profile>
+      <id>java13+</id>
+      <activation>
+        <jdk>[13,)</jdk>
+      </activation>
+      <properties>
+        <!-- jacoco does not work with java 13 yet -->
+        <jacoco.skip>true</jacoco.skip>
+        <!-- spotbugs does not work on java 13 yet, "java.lang.IllegalArgumentException: Unsupported class file major version 57" -->
+        <spotbugs.skip>true</spotbugs.skip>
+      </properties>
+    </profile>
 
     <profile>
       <id>benchmark</id>


[commons-lang] 02/02: Add Java 13 build on Travis CI (openjdk-ea is now Java 14).

Posted by pa...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit 456f92cc9b6cea3e8dac43a44780845e145d06b2
Author: pascalschumacher <pa...@gmx.net>
AuthorDate: Mon Jul 1 22:45:08 2019 +0200

    Add Java 13 build on Travis CI (openjdk-ea is now Java 14).
---
 .travis.yml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/.travis.yml b/.travis.yml
index bc8f156..1e3de86 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -19,6 +19,7 @@ jdk:
   - openjdk8
   - openjdk11
   - openjdk12
+  - openjdk13
   - openjdk-ea
 
 matrix: