menufw/menusuites/group/build.xml
changeset 0 f72a12da539e
equal deleted inserted replaced
-1:000000000000 0:f72a12da539e
       
     1 <project name="menufw" default="validate" basedir=".">
       
     2     <description>
       
     3         this script validates MenuFw suites definitiona against XML Scheme 
       
     4     </description>
       
     5     
       
     6   <echo>VALIDATION SCRIPT: This script validates files in ${xmllocation} againsts XML shema</echo>
       
     7 
       
     8   <target name="validate" >
       
     9     <xmlvalidate  failonerror="true">
       
    10         <attribute name="http://xml.org/sax/features/validation" value="true"/>
       
    11         <attribute name="http://apache.org/xml/features/validation/schema" value="true"/>
       
    12         <attribute name="http://xml.org/sax/features/namespaces" value="true"/>
       
    13         
       
    14         <fileset dir="${xmllocation}" includes="**/*.xml" excludes="*.xml"/>
       
    15     </xmlvalidate >
       
    16   </target>
       
    17 
       
    18 </project>