[Httpunit-commit] CVS: httpunit build.xml,1.24,1.25
Brought to you by:
russgold
|
From: Russell G. <rus...@us...> - 2001-05-04 22:43:02
|
Update of /cvsroot/httpunit/httpunit
In directory usw-pr-cvs1:/tmp/cvs-serv30865
Modified Files:
build.xml
Log Message:
Update documentation for 1.2.4
Index: build.xml
===================================================================
RCS file: /cvsroot/httpunit/httpunit/build.xml,v
retrieving revision 1.24
retrieving revision 1.25
diff -u -r1.24 -r1.25
--- build.xml 2001/04/02 19:38:30 1.24
+++ build.xml 2001/05/04 22:43:00 1.25
@@ -5,8 +5,8 @@
<project name="httpunit" default="jar" basedir=".">
<property name="name" value="httpunit" />
<property name="Name" value="HttpUnit" />
- <property name="version" value="1.2.2" />
- <property name="zip_version" value="1_2_2" />
+ <property name="version" value="1.2.4" />
+ <property name="zip_version" value="1_2_4" />
<property name="src.dir" value="src" />
<property name="tstsrc.dir" value="test" />
<property name="examples.dir" value="examples" />
@@ -48,7 +48,7 @@
<target name="compile" depends="prepare,check_for_optional_packages">
<mkdir dir="${build.classes}" />
<javac srcdir="${src.dir}" destdir="${build.classes}" classpath="${classpath}"
- debug="on" deprecation="on" optimize="off">
+ debug="off" deprecation="on" optimize="off">
<exclude name="**/servletunit/*" unless="jsdk.present" />
</javac>
</target>
@@ -59,7 +59,7 @@
<!-- =================================================================== -->
<target name="testcompile" depends="compile,check_for_optional_packages">
<javac srcdir="${tstsrc.dir}" destdir="${build.classes}" classpath="${classpath}"
- debug="on" deprecation="on" optimize="off">
+ debug="off" deprecation="on" optimize="off">
<exclude name="**/servletunit/*" unless="jsdk.present" />
<exclude name="**/FileUploadTest.java" unless="javamail.present" />
<exclude name="**/XMLPageTest.java" unless="xerces.present" />
|