menufw/menusuites/group/build.xml
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Tue, 26 Jan 2010 11:48:23 +0200
changeset 4 4d54b72983ae
parent 0 f72a12da539e
permissions -rw-r--r--
Revision: 201001 Kit: 201004

<project name="menufw" default="validate" basedir=".">
    <description>
        this script validates MenuFw suites definitiona against XML Scheme 
    </description>
    
  <echo>VALIDATION SCRIPT: This script validates files in ${xmllocation} againsts XML shema</echo>

  <target name="validate" >
    <xmlvalidate  failonerror="true">
        <attribute name="http://xml.org/sax/features/validation" value="true"/>
        <attribute name="http://apache.org/xml/features/validation/schema" value="true"/>
        <attribute name="http://xml.org/sax/features/namespaces" value="true"/>
        
        <fileset dir="${xmllocation}" includes="**/*.xml" excludes="*.xml"/>
    </xmlvalidate >
  </target>

</project>