Changeset 141
- Timestamp:
- 02/28/06 03:52:37
- Files:
-
- uspswebtools/build.xml (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
uspswebtools/build.xml
r130 r141 13 13 14 14 <path id="classpath"> 15 <pathelement location=" ."/>15 <pathelement location="build"/> 16 16 <pathelement location="${junit.jar}"/> 17 17 <pathelement location="${lingerie.jar}"/> … … 23 23 24 24 <target name="compile"> 25 <javac srcdir="com" destdir="." debug="true" deprecation="true"> 25 <mkdir dir="build"/> 26 <javac srcdir="src:tests" destdir="build" debug="true" deprecation="true"> 26 27 <classpath> 27 28 <pathelement location="${httpclient.jar}"/> … … 59 60 60 61 <target name="clean" depends="init" description="Clean all build products."> 61 <delete> 62 <fileset dir="."> 63 <include name="**/*.class"/> 64 </fileset> 65 </delete> 62 <delete dir="build"/> 66 63 <delete dir="apidoc"/> 67 64 </target>
