You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-commits@axis.apache.org by ve...@apache.org on 2016/03/24 23:38:32 UTC

svn commit: r1736512 - in /axis/axis2/java/core/trunk/modules: java2wsdl/pom.xml tool/axis2-ant-plugin/pom.xml

Author: veithen
Date: Thu Mar 24 22:38:32 2016
New Revision: 1736512

URL: http://svn.apache.org/viewvc?rev=1736512&view=rev
Log:
AXIS2-5752: Fix build failure with maven.test.skip=true.

Modified:
    axis/axis2/java/core/trunk/modules/java2wsdl/pom.xml
    axis/axis2/java/core/trunk/modules/tool/axis2-ant-plugin/pom.xml

Modified: axis/axis2/java/core/trunk/modules/java2wsdl/pom.xml
URL: http://svn.apache.org/viewvc/axis/axis2/java/core/trunk/modules/java2wsdl/pom.xml?rev=1736512&r1=1736511&r2=1736512&view=diff
==============================================================================
--- axis/axis2/java/core/trunk/modules/java2wsdl/pom.xml (original)
+++ axis/axis2/java/core/trunk/modules/java2wsdl/pom.xml Thu Mar 24 22:38:32 2016
@@ -202,7 +202,7 @@
                                 <script>
                                     import groovy.xml.*
                                     
-                                    if (project.properties['maven.test.skip']) {
+                                    if (System.properties['maven.test.skip']) {
                                         println 'Tests are skipped'
                                         return
                                     }

Modified: axis/axis2/java/core/trunk/modules/tool/axis2-ant-plugin/pom.xml
URL: http://svn.apache.org/viewvc/axis/axis2/java/core/trunk/modules/tool/axis2-ant-plugin/pom.xml?rev=1736512&r1=1736511&r2=1736512&view=diff
==============================================================================
--- axis/axis2/java/core/trunk/modules/tool/axis2-ant-plugin/pom.xml (original)
+++ axis/axis2/java/core/trunk/modules/tool/axis2-ant-plugin/pom.xml Thu Mar 24 22:38:32 2016
@@ -163,7 +163,7 @@
                                 <script>
                                     import groovy.xml.*
                                     
-                                    if (project.properties['maven.test.skip']) {
+                                    if (System.properties['maven.test.skip']) {
                                         println 'Tests are skipped'
                                         return
                                     }