Changeset 141

Show
Ignore:
Timestamp:
02/28/06 03:52:37
Author:
muness
Message:

--

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • uspswebtools/build.xml

    r130 r141  
    1313 
    1414    <path id="classpath"> 
    15         <pathelement location="."/> 
     15        <pathelement location="build"/> 
    1616        <pathelement location="${junit.jar}"/> 
    1717        <pathelement location="${lingerie.jar}"/> 
     
    2323 
    2424    <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"> 
    2627            <classpath> 
    2728                <pathelement location="${httpclient.jar}"/> 
     
    5960 
    6061    <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"/> 
    6663        <delete dir="apidoc"/> 
    6764    </target>