/[projects]/CircuitBreaker/build.xml
ViewVC logotype

Diff of /CircuitBreaker/build.xml

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 822 by torben, Thu Jun 10 11:15:14 2010 UTC revision 823 by torben, Thu Jun 10 12:43:31 2010 UTC
# Line 27  Line 27 
27                  </javac>                  </javac>
28          </target>          </target>
29    
30          <target name="jar" depends="compile">  
31            <target name="test" depends="compile">
32                    <javac srcdir="test/" includeantruntime="false">
33                            <classpath refid="path.base" />
34                            <classpath path="${builddir}"/>
35                    </javac>
36    
37                    <junit printsummary="on"
38               fork="false"
39                            haltonfailure="true"
40               showoutput="true" >
41    
42                            <classpath refid="path.base" />
43                            <classpath path="${builddir}"/>
44                            <classpath path="test"/>        
45    
46                            <test name="dk.thoerup.circuitbreaker.TestCircuitBreaker" />
47                            <test name="dk.thoerup.circuitbreaker.TestAccountingCircuitBreaker" />
48    
49                    </junit>
50            </target>
51    
52            <target name="jar" depends="test">
53                  <jar destfile="${jarfile}" basedir="${builddir}" />                  <jar destfile="${jarfile}" basedir="${builddir}" />
54          </target>          </target>
55    

Legend:
Removed from v.822  
changed lines
  Added in v.823

  ViewVC Help
Powered by ViewVC 1.1.20