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 2016/02/20 01:04:40 UTC

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

Author: veithen
Date: Sat Feb 20 00:04:39 2016
New Revision: 1731314

URL: http://svn.apache.org/viewvc?rev=1731314&view=rev
Log:
Fix build on Windows.

Modified:
    webservices/axiom/trunk/pom.xml

Modified: webservices/axiom/trunk/pom.xml
URL: http://svn.apache.org/viewvc/webservices/axiom/trunk/pom.xml?rev=1731314&r1=1731313&r2=1731314&view=diff
==============================================================================
--- webservices/axiom/trunk/pom.xml (original)
+++ webservices/axiom/trunk/pom.xml Sat Feb 20 00:04:39 2016
@@ -913,7 +913,7 @@
                                             out.println """  permission org.osgi.framework.ServicePermission "*", "register,get";"""
                                             out.println "};"
                                         }
-                                        project.properties['securityManagerArgs'] = '-Djava.security.manager -Djava.security.policy=${project.build.directory}/test.policy'
+                                        project.properties['securityManagerArgs'] = '-Djava.security.manager -Djava.security.policy=' + project.build.directory.replace('\\', '/') + '/test.policy'
                                     } else {
                                         project.properties['securityManagerArgs'] = ''
                                     }