Author: mbenson
Date: Thu Oct 20 21:10:12 2016
New Revision: 1765885

URL: http://svn.apache.org/viewvc?rev=1765885&view=rev
Log:
fix security policy for security testing profile

Modified:
    bval/trunk/bval-jsr/pom.xml
    bval/trunk/bval-jsr/src/test/resources/java.policy

Modified: bval/trunk/bval-jsr/pom.xml
URL: 
http://svn.apache.org/viewvc/bval/trunk/bval-jsr/pom.xml?rev=1765885&r1=1765884&r2=1765885&view=diff
==============================================================================
--- bval/trunk/bval-jsr/pom.xml (original)
+++ bval/trunk/bval-jsr/pom.xml Thu Oct 20 21:10:12 2016
@@ -119,13 +119,6 @@
                                                 <!-- append extra slash on 
windows only -->
                                                 <replacestring from="file://" 
to="file://${slash}" />
                                                 <replacestring 
from="${file.separator}" to="/" />
-                                                <!-- preserve system-specific 
file separator -->
-                                                <expandproperties>
-                                                    <propertyset>
-                                                        <propertyref 
prefix="project." />
-                                                        <globmapper from="*" 
to="preserve.*" />
-                                                    </propertyset>
-                                                </expandproperties>
                                             </filterchain>
                                         </copy>
                                     </target>

Modified: bval/trunk/bval-jsr/src/test/resources/java.policy
URL: 
http://svn.apache.org/viewvc/bval/trunk/bval-jsr/src/test/resources/java.policy?rev=1765885&r1=1765884&r2=1765885&view=diff
==============================================================================
--- bval/trunk/bval-jsr/src/test/resources/java.policy (original)
+++ bval/trunk/bval-jsr/src/test/resources/java.policy Thu Oct 20 21:10:12 2016
@@ -21,7 +21,7 @@
 grant
 {
   // let everyone read target dir
-  permission java.io.FilePermission 
"${preserve.project.build.directory}${/}-", "read";
+  permission java.io.FilePermission "${project.build.directory}${/}-", "read";
 };
 
 // we don't care about the permissions of the testing infrastructure,


Reply via email to