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

Diff of /miscJava/CircuitBreaker/build.xml

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

revision 823 by torben, Thu Jun 10 12:43:31 2010 UTC revision 1100 by torben, Wed Sep 22 09:43:52 2010 UTC
# Line 2  Line 2 
2    
3          <property name="builddir" value="antbuild" />          <property name="builddir" value="antbuild" />
4          <property name="jarfile" value="CircuitBreaker.jar" />          <property name="jarfile" value="CircuitBreaker.jar" />
5            <property name="extlibpath" value="../" />
6    
7          <path id="path.base">          <path id="path.base">
8                  <fileset dir="/home/app/glassfishv3/glassfish/modules/">                  <fileset dir="/home/app/glassfishv3/glassfish/modules/">
9                          <include name="*.jar" />                          <include name="*.jar" />
10                  </fileset>                  </fileset>
11                  <fileset dir="../">                  <fileset dir="${extlibpath}">
12                          <include name="*.jar" />                          <include name="*.jar" />
13                  </fileset>                  </fileset>
14          </path>          </path>
# Line 22  Line 23 
23          </target>          </target>
24    
25          <target name="compile" depends="init">          <target name="compile" depends="init">
26                  <javac srcdir="src/" destdir="${builddir}" debug="off" optimize="on" includeantruntime="false">                  <javac srcdir="src/" destdir="${builddir}" debug="off" optimize="on" includeantruntime="false" updatedProperty="didcompile">
27                          <classpath refid="path.base" />                          <classpath refid="path.base" />
28                  </javac>                  </javac>
29          </target>          </target>
30    
31    
32          <target name="test" depends="compile">          <target name="test" depends="compile" if="didcompile">
33                  <javac srcdir="test/" includeantruntime="false">                  <javac srcdir="test/" includeantruntime="false">
34                          <classpath refid="path.base" />                          <classpath refid="path.base" />
35                          <classpath path="${builddir}"/>                          <classpath path="${builddir}"/>

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

  ViewVC Help
Powered by ViewVC 1.1.20