You are viewing a plain text version of this content. The canonical link for it is here.
Posted to axis-cvs@ws.apache.org by ha...@apache.org on 2004/09/03 17:44:31 UTC

cvs commit: ws-axis/c/tests/utils/monitor build.xml

hawkeye     2004/09/03 08:44:31

  Added:       c/tests/utils/monitor build.xml
  Log:
  ANT script to build automated SOAP message testing utility.
  
  Submitted by: Adrian Dick
  
  Revision  Changes    Path
  1.1                  ws-axis/c/tests/utils/monitor/build.xml
  
  Index: build.xml
  ===================================================================
  <project name="AxisCTestMonitor" default="production" basedir=".">
  
  	<!--
  	  Compile monitor code
  	  -->
  	<target name="compile">
  		<javac srcdir="${basedir}" destdir="${basedir}" listfiles="true"/>
  	</target>
  	
  	<!--
  	  Package monitor code into Jar file
  	  -->
  	<target name="package">
  		<jar jarfile="${basedir}/monitor.jar" basedir="${basedir}">
  			<include name="**/*.class"/>
  			<manifest>
  				<attribute name="Main-Class"
  				 value="org.apache.test.TCPMonitor"/>
  			</manifest>
  		</jar>
  	</target>
  	
  	<target name="production" depends="compile, package" description="Build and package TCPMonitor utility"/>
  	
  	<!--
  	  Remove all generated artifacts
  	  -->
  	<target name="clean">
  		<delete file="${basedir}/monitor.jar"/>
  		<delete>
  			<fileset dir="${basedir}">
  				<include name="**/*.class"/>
  			</fileset>
  		</delete>
  	</target>
  </project>