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/28 08:52:10 UTC

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

Author: veithen
Date: Thu May 28 06:52:10 2015
New Revision: 1682150

URL: http://svn.apache.org/r1682150
Log:
Fix build failure.

Modified:
    webservices/axiom/trunk/pom.xml

Modified: webservices/axiom/trunk/pom.xml
URL: http://svn.apache.org/viewvc/webservices/axiom/trunk/pom.xml?rev=1682150&r1=1682149&r2=1682150&view=diff
==============================================================================
--- webservices/axiom/trunk/pom.xml (original)
+++ webservices/axiom/trunk/pom.xml Thu May 28 06:52:10 2015
@@ -725,6 +725,11 @@
                             <source>
                                 import java.io.File
                                 
+                                <!-- Avoid chicken and egg problem with jar-resource-bundle -->
+                                if (project.packaging == 'pom') {
+                                    project.properties['skipRemoteResources'] = 'true'
+                                }
+                                
                                 <!-- Create the temporary directory specified in the surefire configuration -->
                                 new File(project.build.directory, 'tmp').mkdirs()
                                 
@@ -763,6 +768,7 @@
                             <goal>process</goal>
                         </goals>
                         <configuration>
+                            <skip>${skipRemoteResources}</skip>
                             <resourceBundles>
                                 <resourceBundle>org.apache.ws.commons.axiom:jar-resource-bundle:${project.version}</resourceBundle>
                             </resourceBundles>