Author: dims
Date: Sun Aug 13 19:03:43 2006
New Revision: 431282

URL: http://svn.apache.org/viewvc?rev=431282&view=rev
Log:
skip the nist download if the maven.test.skip is set (brett confirmed on #maven 
to stick to this since it  works even if it feels like a hack.)

Modified:
    webservices/commons/trunk/modules/XmlSchema/build.xml
    webservices/commons/trunk/modules/XmlSchema/pom.xml

Modified: webservices/commons/trunk/modules/XmlSchema/build.xml
URL: 
http://svn.apache.org/viewvc/webservices/commons/trunk/modules/XmlSchema/build.xml?rev=431282&r1=431281&r2=431282&view=diff
==============================================================================
--- webservices/commons/trunk/modules/XmlSchema/build.xml (original)
+++ webservices/commons/trunk/modules/XmlSchema/build.xml Sun Aug 13 19:03:43 
2006
@@ -43,7 +43,7 @@
        <antcall target="prepareNistTest"/>
     </target>
        
-    <target name="prepareNistTest">
+    <target name="prepareNistTest" unless="maven.test.skip">
        <condition property="needsTestsDownload">
              <not>
                <available file="${build.dir}/xmlschema2002-01-16"/>

Modified: webservices/commons/trunk/modules/XmlSchema/pom.xml
URL: 
http://svn.apache.org/viewvc/webservices/commons/trunk/modules/XmlSchema/pom.xml?rev=431282&r1=431281&r2=431282&view=diff
==============================================================================
--- webservices/commons/trunk/modules/XmlSchema/pom.xml (original)
+++ webservices/commons/trunk/modules/XmlSchema/pom.xml Sun Aug 13 19:03:43 2006
@@ -189,6 +189,7 @@
               <tasks>
                 <ant inheritRefs="true" antfile="${basedir}/build.xml">
                   <property value="${basedir}/target" 
name="build.dir"></property>
+                  <property value="${maven.test.skip}" 
name="maven.test.skip"></property>
                   <target name="prepareNistTest"></target>
                 </ant>
               </tasks>



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to