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

Annotation of /miscJava/WebConfig/build.xml

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1322 - (hide annotations) (download) (as text)
Tue Apr 19 20:34:21 2011 UTC (13 years, 2 months ago) by torben
Original Path: WebConfig/build.xml
File MIME type: text/xml
File size: 830 byte(s)
added ant build file for WebConfig
1 torben 1322 <project name="WebConfig" default="jar">
2    
3     <property name="builddir" value="antbuild" />
4     <property name="jarfile" value="WebConfig.jar" />
5     <property name="glassfish" value="/home/app/glassfishv3/glassfish" />
6    
7     <path id="path.base">
8     <fileset dir="${glassfish}/modules/">
9     <include name="*.jar" />
10     </fileset>
11     </path>
12    
13     <target name="clean">
14     <delete file="${jarfile}" />
15     <delete dir="${builddir}" />
16     </target>
17    
18     <target name="init">
19     <mkdir dir="${builddir}" />
20     </target>
21    
22     <target name="compile" depends="init">
23     <javac srcdir="src/" destdir="${builddir}" debug="off" optimize="on" includeantruntime="false" updatedProperty="didcompile">
24     <classpath refid="path.base" />
25     </javac>
26     </target>
27    
28    
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