You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@poi.apache.org by Orion Poplawski <or...@cora.nwra.com> on 2010/06/25 23:31:03 UTC

Disconnected build of compile-xsds-schema

compile-xsds-schema does nothing if disconnected is true.  This does not seem
correct, as it really shouldn't matter.  The following patch fixes:

--- poi-3.7-beta1/build.xml.compile-xsds
+++ poi-3.7-beta1/build.xml
@@ -370,12 +370,9 @@
     </target>
     <target name="check-compiled-ooxml-xsds" depends="fetch-ooxml-xsds">
         <condition property="ooxml-compiled-xsds.present">
-            <or>
-                <and>
-                    <available file="${ooxml.xsds.jar}"/>
-                </and>
-                <isset property="disconnected"/>
-            </or>
+            <and>
+                <available file="${ooxml.xsds.jar}"/>
+            </and>
         </condition>
     </target>
     <target name="compile-ooxml-xsds" unless="ooxml-compiled-xsds.present"



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