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

Contents of /WebConfig/build.xml

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1322 - (show annotations) (download) (as text)
Tue Apr 19 20:34:21 2011 UTC (13 years, 1 month ago) by torben
File MIME type: text/xml
File size: 830 byte(s)
added ant build file for WebConfig
1 <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