<project name="test" default="taskdef">
    <target name="taskdef">
      <!--
      Set up the classpath for the generation task.
      Include all the standard jaxme jars.
      -->
      <path id="generate.class.path">
        <pathelement location="C:\JavaPack\ws-jaxme-0.3.1\lib\jaxme2.jar"/>
        <pathelement location="C:\JavaPack\ws-jaxme-0.3.1\lib\jaxmejs.jar"/>
        <pathelement location="C:\JavaPack\ws-jaxme-0.3.1\lib\jaxmexs.jar"/>
        <pathelement location="C:\JavaPack\ws-jaxme-0.3.1\lib\jaxmeapi.jar"/>
      </path>
      <!--
      Defines the generation task using that classpath.
      -->
      <taskdef name="xjc"
        classname="org.apache.ws.jaxme.generator.XJCTask"
        classpathref="generate.class.path"/>
      <!--
      Generate source code.
      The 'schema' attribute gives the path to the schema the sources
      will be generated from.
      The 'target' attribute specifies the base directory that the source
      will be generated into. Sources will be created in subdirectories
      corresponding to the package structure.
      -->
      <xjc 
        schema="C:\IDEs\WS512\MDB\QuoteProviderCoreJava\src\com\aflac\quoteservice\definitions\car.xsd" 
        target="C:\IDEs\WS512\MDB\QuoteProviderCoreJava\src">
       </xjc>
    </target>
</project>
