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:34 UTC

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

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>