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 2015/05/30 18:34:59 UTC

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

Author: veithen
Date: Sat May 30 16:34:59 2015
New Revision: 1682621

URL: http://svn.apache.org/r1682621
Log:
Fix problem with -DskipTests=true.

Modified:
    webservices/axiom/trunk/pom.xml

Modified: webservices/axiom/trunk/pom.xml
URL: http://svn.apache.org/viewvc/webservices/axiom/trunk/pom.xml?rev=1682621&r1=1682620&r2=1682621&view=diff
==============================================================================
--- webservices/axiom/trunk/pom.xml (original)
+++ webservices/axiom/trunk/pom.xml Sat May 30 16:34:59 2015
@@ -743,7 +743,7 @@
                                 new File(project.build.directory, 'tmp').mkdirs()
                                 
                                 <!-- Skip Jacoco if necessary -->
-                                if (project.properties['skipTests'] == 'true') {
+                                if (System.properties['skipTests'] == 'true') {
                                     println 'Disabling JaCoCo because tests are skipped'
                                     project.properties['skipJacoco'] = 'true'
                                 } else if (System.properties['java.specification.version'] == '1.8') {