1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
|
<?xml version="1.0"?>
<!DOCTYPE project [
<!ENTITY properties SYSTEM "file:xmls/properties.xml">
<!ENTITY paths SYSTEM "file:xmls/path_refs.xml">
]>
<project name="tcpmon" default="default" basedir=".">
<!-- =================================================================== -->
<description>
build file to run the tcpmonitor application.
by default the tool is run; the all task actually builds it first
</description>
&properties;
<property file="tcpmon.properties" />
<target name="run" description="run tcpmon" >
<property name="tcpmon.laf" value="" />
<java
classname="org.apache.axis.utils.tcpmon"
fork="true"
failonerror="true">
<sysproperty key="tcpmon.laf" value="${tcpmon.laf}"/>
<classpath>
<fileset dir="${build.lib}" includes="**/*.jar" />
</classpath>
</java>
</target>
<!--build by calling the default target on axis-->
<target name="build" description="build axis" >
<ant antfile="build.xml" inheritall="false" />
</target>
<target name="all" description="build and run tcpmon"
depends="build,run" />
<target name="default" description="run tcpmon" depends="run" />
</project>
|