Update of /cvsroot/pyxida/AsyncJ
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19165
Added Files:
.cvsignore build.xml
Log Message:
Added build.xml
--- NEW FILE: .cvsignore ---
dist
--- NEW FILE: build.xml ---
<project name="AsyncJ" default="compile" basedir=".">
<property name="src" location="src" />
<property name="build" location="classes" />
<property name="dist" location="dist" />
<property name="bin" location="bin" />
<property name="lib" location="lib" />
<property name="config" location="config" />
<property name="AsyncJjar" value="asyncj.jar" />
<property name="PRPUtiljar" value="util-prp.jar" />
<property environment="env"/>
<path id="classpath">
<pathelement path="${java.class.path}/" />
<pathelement path="${lib}/${PRPUtiljar}" />
<pathelement path="${lib}/xmlrpc-2.0-a1-dev.jar" />
</path>
<target name="init">
<!-- Create the time stamp -->
<tstamp />
<!-- Create the build directory structure used by compile -->
<mkdir dir="${build}" />
</target>
<target name="compile" depends="init" description="Compile the source.">
<!-- Compile the java code from ${src} into ${build} -->
<javac debug="on" srcdir="${src}" destdir="${build}" classpathref="classpath"/>
</target>
<target name="jar" depends="compile" description="Create the distribution jar file.">
<mkdir dir="${dist}" />
<jar destfile="${dist}/${AsyncJjar}">
<zipfileset dir="${build}"/>
<zipfileset src="${lib}/${PRPUtiljar}"/>
<zipfileset src="${lib}/xmlrpc-2.0-a1-dev.jar" />
</jar>
</target>
<target name="clean" description="Clean build and dist directory.">
<!-- Delete the ${build} directory trees -->
<delete dir="${build}" />
<delete dir="${dist}" />
</target>
</project>
|