You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@poi.apache.org by ce...@apache.org on 2022/07/29 17:57:05 UTC

svn commit: r1903109 - /poi/trunk/build.xml

Author: centic
Date: Fri Jul 29 17:57:05 2022
New Revision: 1903109

URL: http://svn.apache.org/viewvc?rev=1903109&view=rev
Log:
Add workaround for bcpkix-module which is not loaded automatically for some reason

Modified:
    poi/trunk/build.xml

Modified: poi/trunk/build.xml
URL: http://svn.apache.org/viewvc/poi/trunk/build.xml?rev=1903109&r1=1903108&r2=1903109&view=diff
==============================================================================
--- poi/trunk/build.xml (original)
+++ poi/trunk/build.xml Fri Jul 29 17:57:05 2022
@@ -1333,6 +1333,7 @@ under the License.
         <attribute name="modulepath-ref"/>
         <attribute name="module1" default=""/>
         <attribute name="module2" default=""/>
+        <attribute name="module3" default=""/>
         <attribute name="outputDir"/>
         <element name="elements" implicit="true"/>
         <sequential>
@@ -1385,12 +1386,16 @@ under the License.
 
             <local name="use_module1"/>
             <local name="use_module2"/>
+            <local name="use_module3"/>
             <condition property="use_module1" value="true" unless:true="${isJava8}">
                 <length string="@{module1}" when="greater" length="0"/>
             </condition>
             <condition property="use_module2" value="true" unless:true="${isJava8}">
                 <length string="@{module2}" when="greater" length="0"/>
             </condition>
+            <condition property="use_module3" value="true" unless:true="${isJava8}">
+                <length string="@{module3}" when="greater" length="0"/>
+            </condition>
 
             <!-- As of 2018, JaCoCo is managing expectations and stay on Java 5 and therefore don't support junitlauncher -->
             <!-- https://github.com/jacoco/jacoco/issues/673  ... m( -->
@@ -1435,6 +1440,7 @@ under the License.
                         <jvmarg line="--add-modules org.junit.jupiter.params" unless:true="${isJava8}"/>
                         <jvmarg line="--add-modules org.apache.poi.@{module1}" if:set="use_module1"/>
                         <jvmarg line="--add-modules org.apache.poi.@{module2}" if:set="use_module2"/>
+                        <jvmarg line="--add-modules @{module3}" if:set="use_module3"/>
                     </fork>
 
                     <listener classname="Junit5Progress" />
@@ -1461,7 +1467,7 @@ under the License.
         </path>
 
         <poiunit failureproperty="ooxml.test.failed" heap="768" modulepath-ref="restest.modules"
-            module1="ooxml" module2="scratchpad" outputDir="${ooxml.reports.test}">
+            module1="ooxml" module2="scratchpad" module3="org.bouncycastle.pkix" outputDir="${ooxml.reports.test}">
             <zipfileset src="build/dist/maven/poi-ooxml-tests/poi-ooxml-${version.id}-tests.jar">
                 <include name="**/${testpattern}.class"/>
                 <exclude name="**/*$*.class"/>
@@ -1782,7 +1788,7 @@ under the License.
         <attribute name="type"/>
         <sequential>
             <poiunit failureproperty="ooxml.test.failed" heap="768" jacocodest="build/jacoco-@{type}.exec"
-                     modulepath-ref="@{modulepath-ref}" module1="ooxml" module2="scratchpad" outputDir="${ooxml.reports.test}">
+                     modulepath-ref="@{modulepath-ref}" module1="ooxml" module2="scratchpad" module3="org.bouncycastle.pkix" outputDir="${ooxml.reports.test}">
                 <zipfileset src="build/dist/maven/poi-ooxml-tests/poi-ooxml-${version.id}-tests.jar">
                     <include name="**/${testpattern}.class"/>
                     <exclude name="**/*$*.class"/>



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@poi.apache.org
For additional commands, e-mail: commits-help@poi.apache.org