cmlenz 02/01/28 07:40:46
Added: testsuite build.xml
Removed: testsuite Build.xml
Log:
Some OSes/filesystems/shells are case-sensitive ;)
Revision Changes Path
1.1 jakarta-slide/testsuite/build.xml
Index: build.xml
===================================================================
<project default="all">
<property name="src" value="${basedir}/testsuite/junit/src" />
<property name="debug" value="${basedir}/testsuite/junit/debug" />
<property name="lib" value="${basedir}/lib" />
<property name="slideclientlib" value="${basedir}/../dist/client/lib" />
<property name="dist" value="${basedir}/dist" />
<property name="cpath"
value="${slideclientlib}/commons-httpclient.jar;${slideclientlib}/slide-webdavlib.jar;${lib}/jdom.jar;${lib}/junit.jar;${lib}/xerces.jar;${lib}/jakarta-oro-2.0.jar"
/>
<!-- =============================================================== -->
<target name="compile">
<echo message="Compiling ..." />
<delete dir="${debug}" />
<mkdir dir="${debug}" />
<javac srcdir="${src}"
destdir="${debug}"
classpath="${cpath}"
debug="on" />
<copy todir="${debug}" >
<fileset dir="${src}" excludes="**/*.java,**/CVS/**/*" />
</copy>
</target>
<!-- =============================================================== -->
<target name="makejar">
<echo message="Building tprocessor.jar ..." />
<delete file="${lib}/tprocessor.jar" />
<jar jarfile="${lib}/tprocessor.jar"
basedir="${debug}" />
</target>
<!-- =============================================================== -->
<target name="makezip">
<echo message="Building testsuite.zip ..." />
<zip zipfile="${basedir}/../testsuite.zip">
<zipfileset dir="${basedir}" prefix="jakarta-slide-webdav-testsuite"
excludes="**/dist/**,**/CVS/**,**/testCasesResults.xml,**/testErrorsReport.txt"/>
</zip>
</target>
<!-- =============================================================== -->
<target name="make">
<antcall target="compile" />
<antcall target="makejar" />
</target>
<!-- =============================================================== -->
<target name="dist">
<antcall target="makezip" />
<delete dir="${dist}" />
<mkdir dir="${dist}" />
<move todir="${dist}" file="${basedir}/../testsuite.zip" />
</target>
<!-- =============================================================== -->
<target name="all">
<antcall target="make" />
<antcall target="dist" />
</target>
</project>
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>