All Downloads are FREE. Search and download functionalities are using the official Maven repository.

examples.busy.build.xml Maven / Gradle / Ivy

There is a newer version: 1.3.0-91
Show newest version
<project basedir="." default="shootme" >
    <property name="root" value="../../../" />
    <property file="${root}/ant-build-config.properties" />
        <property name = "classes" value="${root}/classes" />
        <property name = "srcroot" value ="${root}/src" />
        <property name = "log4j_jar" value="${root}/${log4j}" />
    <path id="project.class.path" >
        <pathelement location="${classes}"/>
        <pathelement location="${log4j_jar}"/>
    </path>
        <target name="make" >
        <javac debug="${javac.debug}"
            debuglevel="${javac.debuglevel}"
            source="${javac.source}"
            nowarn="${javac.nowarn}"
            deprecation="${javac.deprecation}"
            optimize="${javac.optimize}"
            srcdir="${srcroot}"
            includes="examples/busy/**/*.java"
            classpathref="project.class.path"
            destdir= "${classes}">
        </javac>
     </target>
     <target name="shootme" depends="make"
        description="build and run the  example UAS.">
        <delete file="shootmedebug.txt" failonerror="false" />
        <delete file="shootmelog.txt"  failonerror="false"/>
            <java
            classname="examples.busy.Shootme"
            classpathref="project.class.path"
            fork="true" >
            </java>
    </target>

    <target name="shootist"
    depends = "make"
    description="run the example UAC.">
    <delete file="shootistdebuglog.txt" />
    <delete file="shootistlog.txt" />
        <java  classname="examples.busy.Shootist"
        fork="true"
        classpathref="project.class.path"
    />
     </target>
    <target name="shootistlog" description= "Show the  log" >
        <java classname="tools.tracesviewer.TracesViewer" fork="true">
      <arg name="-server_file" value="shootistlog.txt" />
    </java>
     </target>
    <target name="shootmelog" description= "Show the  log" >
        <java classname="tools.tracesviewer.TracesViewer" fork="true">
      <arg name="-server_file" value="shootmelog.txt" />
    </java>
     </target>


</project>




© 2015 - 2024 Weber Informatics LLC | Privacy Policy