You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@gump.apache.org by bo...@apache.org on 2023/05/28 06:15:57 UTC

svn commit: r1910096 - in /gump/metadata/project: ant.xml antlibs-antunit.xml junit.xml

Author: bodewig
Date: Sun May 28 06:15:57 2023
New Revision: 1910096

URL: http://svn.apache.org/viewvc?rev=1910096&view=rev
Log:
temporarily allow security manager to be used during Ant-run junit tests

Modified:
    gump/metadata/project/ant.xml
    gump/metadata/project/antlibs-antunit.xml
    gump/metadata/project/junit.xml

Modified: gump/metadata/project/ant.xml
URL: http://svn.apache.org/viewvc/gump/metadata/project/ant.xml?rev=1910096&r1=1910095&r2=1910096&view=diff
==============================================================================
--- gump/metadata/project/ant.xml (original)
+++ gump/metadata/project/ant.xml Sun May 28 06:15:57 2023
@@ -144,6 +144,7 @@
     <ant target="run-tests">
       <property name="test.haltonfailure" value="false"/>
       <property name="ant.home" reference="home" project="ant"/>
+      <sysproperty name="security.manager" value="allow"/>
     </ant>
 
     <depend project="dist-ant" inherit="runtime"/>

Modified: gump/metadata/project/antlibs-antunit.xml
URL: http://svn.apache.org/viewvc/gump/metadata/project/antlibs-antunit.xml?rev=1910096&r1=1910095&r2=1910096&view=diff
==============================================================================
--- gump/metadata/project/antlibs-antunit.xml (original)
+++ gump/metadata/project/antlibs-antunit.xml Sun May 28 06:15:57 2023
@@ -55,6 +55,7 @@
       <!-- Gump uses Java 21 where Java 8 is the minimum target -->
       <property name="javac.test-source" value="8"/>
       <property name="javac.test-target" value="8"/>
+      <sysproperty name="security.manager" value="allow"/>
     </ant>
 
     <work nested="build/test-classes"/>

Modified: gump/metadata/project/junit.xml
URL: http://svn.apache.org/viewvc/gump/metadata/project/junit.xml?rev=1910096&r1=1910095&r2=1910096&view=diff
==============================================================================
--- gump/metadata/project/junit.xml (original)
+++ gump/metadata/project/junit.xml Sun May 28 06:15:57 2023
@@ -43,7 +43,8 @@
   <project name="test-junit">
     <mvn3 goal="test" separateLocalRepository="junit">
       <!-- Gump uses Java 21 which has a minimum source/target of Jave 8 -->
-      <property name="jdkVersion" value="1.8"/>
+	    <property name="jdkVersion" value="1.8"/>
+	    <sysproperty name="security.manager" value="allow"/>
     </mvn3>
     <depend project="junit"/>
     <nag from="Gump Integration &lt;general@gump.apache.org&gt;"