| <!ENTITY properties SYSTEM "file:xmls/properties.xml"> |
| <!ENTITY paths SYSTEM "file:xmls/path_refs.xml"> |
| <project name="tcpmon" default="default" basedir="."> |
| <!-- =================================================================== --> |
| build file to run the tcpmonitor application. |
| by default the tool is run; the all task actually builds it first |
| <property file="tcpmon.properties" /> |
| <target name="run" description="run tcpmon" > |
| <property name="tcpmon.laf" value="" /> |
| classname="org.apache.axis.utils.tcpmon" |
| <sysproperty key="tcpmon.laf" value="${tcpmon.laf}"/> |
| <fileset dir="${build.lib}" includes="**/*.jar" /> |
| <!--build by calling the default target on axis--> |
| <target name="build" description="build axis" > |
| <ant antfile="build.xml" inheritall="false" /> |
| <target name="all" description="build and run tcpmon" |
| <target name="default" description="run tcpmon" depends="run" /> |