You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ws.apache.org by ve...@apache.org on 2013/08/10 10:50:38 UTC

svn commit: r1512579 - /webservices/axiom/trunk/pom.xml

Author: veithen
Date: Sat Aug 10 08:50:38 2013
New Revision: 1512579

URL: http://svn.apache.org/r1512579
Log:
Skip JaCoCo on Java 1.8 (not supported yet).

Modified:
    webservices/axiom/trunk/pom.xml

Modified: webservices/axiom/trunk/pom.xml
URL: http://svn.apache.org/viewvc/webservices/axiom/trunk/pom.xml?rev=1512579&r1=1512578&r2=1512579&view=diff
==============================================================================
--- webservices/axiom/trunk/pom.xml (original)
+++ webservices/axiom/trunk/pom.xml Sat Aug 10 08:50:38 2013
@@ -566,6 +566,11 @@
                                 if (project.packaging == 'pom' || project.properties['skipTests'] == 'true') {
                                     project.properties['skipJacoco'] = 'true'
                                 }
+                                <!-- JaCoCo doesn't work on Java 1.8 -->
+                                if (System.properties['java.specification.version'] == '1.8') {
+                                    println 'WARNING: Java 1.8 not supported; disabling JaCoCo'
+                                    project.properties['skipJacoco'] = 'true'
+                                }
                             </source>
                         </configuration>
                     </execution>