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 2018/05/10 12:07:42 UTC

[2/2] [text] Skip Jacoco on Java 11, because Jacoco does not support it yet (see: https://github.com/jacoco/jacoco/issues/663).

Skip Jacoco on Java 11, because Jacoco does not support it yet (see: https://github.com/jacoco/jacoco/issues/663).


Project: http://git-wip-us.apache.org/repos/asf/commons-text/repo
Commit: http://git-wip-us.apache.org/repos/asf/commons-text/commit/c54705d7
Tree: http://git-wip-us.apache.org/repos/asf/commons-text/tree/c54705d7
Diff: http://git-wip-us.apache.org/repos/asf/commons-text/diff/c54705d7

Branch: refs/heads/master
Commit: c54705d7969ea1a20960ea32a5cf013b4559e578
Parents: d6e88f5
Author: Pascal Schumacher <pa...@gmx.net>
Authored: Fri May 4 21:29:20 2018 +0200
Committer: Pascal Schumacher <pa...@gmx.net>
Committed: Sat May 5 14:01:54 2018 +0200

----------------------------------------------------------------------
 pom.xml | 12 +++++++++++-
 1 file changed, 11 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/commons-text/blob/c54705d7/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index c5bfbe7..4b8eb8a 100644
--- a/pom.xml
+++ b/pom.xml
@@ -418,9 +418,19 @@
         <jdk>[9,)</jdk>
       </activation>
       <properties>
-        <!-- coverall version 4.3.0 does not work with java 9, see https://github.com/trautonen/coveralls-maven-plugin/issues/112 -->
+        <!-- coverall version 4.3.0 does not work with java 9+, see https://github.com/trautonen/coveralls-maven-plugin/issues/112 -->
         <coveralls.skip>true</coveralls.skip>
       </properties>
     </profile>
+    <profile>
+      <id>java11+</id>
+      <activation>
+        <jdk>[11,)</jdk>
+      </activation>
+      <properties>
+        <!-- jacoco does not work with java 11 yet, see https://github.com/jacoco/jacoco/issues/663 -->
+        <jacoco.skip>true</jacoco.skip>
+      </properties>
+    </profile>
   </profiles>
 </project>