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

Contents of /CircuitBreaker/build.xml

Parent Directory Parent Directory | Revision Log Revision Log


Revision 821 - (show annotations) (download) (as text)
Thu Jun 10 11:15:14 2010 UTC (13 years, 11 months ago) by torben
File MIME type: text/xml
File size: 819 byte(s)
added basic ant build file for circuitbreaker
1 <project name="CircuiBreaker" default="jar">
2
3 <property name="builddir" value="antbuild" />
4 <property name="jarfile" value="CircuitBreaker.jar" />
5
6 <path id="path.base">
7 <fileset dir="/home/app/glassfishv3/glassfish/modules/">
8 <include name="*.jar" />
9 </fileset>
10 <fileset dir="../">
11 <include name="*.jar" />
12 </fileset>
13 </path>
14
15 <target name="clean">
16 <delete file="${jarfile}" />
17 <delete dir="${builddir}" />
18 </target>
19
20 <target name="init">
21 <mkdir dir="${builddir}" />
22 </target>
23
24 <target name="compile" depends="init">
25 <javac srcdir="src/" destdir="${builddir}" debug="off" optimize="on" includeantruntime="false">
26 <classpath refid="path.base" />
27 </javac>
28 </target>
29
30 <target name="jar" depends="compile">
31 <jar destfile="${jarfile}" basedir="${builddir}" />
32 </target>
33
34 </project>

  ViewVC Help
Powered by ViewVC 1.1.20