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

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

There is a newer version: 1.3.0-91
Show newest version
<project basedir="." default="b2bua">
	<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}" />
	<property name="junit_jar" value="${root}/${junit}" />
	<path id="project.class.path">
		<pathelement location="${classes}" />
		<pathelement location="${log4j_jar}" />
		<pathelement location="${junit_jar}" />
	</path>
	<target name="make">
		<javac debug="true" source="${javac.source}" deprecation="${javac.deprecation}" debuglevel="${javac.debuglevel}" srcdir="${srcroot}" includes="examples/simplecallsetup/**/*.java" classpathref="project.class.path" destdir="${classes}">
		</javac>
	</target>
	<target name="b2bua" depends="make" description="build and run the  example UAS.">
		<delete file="shootmedebug.txt" />
		<delete file="shootmelog.txt" />
		<java classname="examples.websocket.B2BUA" classpathref="project.class.path" fork="true">
		</java>
	</target>
	<target name="clean" description="clean the logs">
		<delete fileset="*debug.txt" />
		<delete fileset="*log.txt" />
	</target>

</project>




© 2015 - 2024 Weber Informatics LLC | Privacy Policy