<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<project basedir="." default="build" name="{Company}">
    <property environment="env"/>
    <property name="debuglevel" value="source,lines,vars"/>
    <path id="{Company}.classpath">
        <pathelement location="bin"/>
        <pathelement location="{sdk_location}/bin/jserver.jar"/>
        <pathelement location="{sdk_location}/lib/jwbemserver.jar"/>
        <pathelement location="{sdk_location}/lib/wbem.jar"/>
        <pathelement location="{sdk_location}/lib/ws_lib.jar"/>
        <pathelement location="{generated_jar_file}"/>
    </path>
    <target name="init">
        <mkdir dir="bin"/>
        <copy includeemptydirs="false" todir="bin">
            <fileset dir="src">
                <exclude name="**/*.java"/>
            </fileset>
        </copy>
    </target>
    <target name="clean">
        <delete dir="bin"/>
    </target>
    <target depends="clean" name="cleanall"/>
    <target name="build" depends="init">
        <echo message="${ant.project.name}: ${ant.file}"/>
        <javac debug="true" debuglevel="${debuglevel}" destdir="bin" includeantruntime="false">
            <src path="src"/>
            <classpath refid="{Company}.classpath"/>
        </javac>
    </target>
</project>