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

commit 2614a94acc1a1669a5a49105bde219de770795d9
Author: Pascal Schumacher <pascalschumac...@gmx.net>
AuthorDate: Sat Jan 5 22:33:07 2019 +0100

    Disable JaCoCo on Java 13+, because it does not support it yet.
---
 pom.xml | 10 ++++++++++
 1 file changed, 10 insertions(+)

diff --git a/pom.xml b/pom.xml
index d5649cd..a8cb9e3 100644
--- a/pom.xml
+++ b/pom.xml
@@ -463,5 +463,15 @@
         <maven.javadoc.skip>true</maven.javadoc.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>
+      </properties>
+    </profile>
   </profiles>
 </project>

Reply via email to