ant.jar and xerces.jar is not any more copied to dist-dir
[mir.git] / build.xml
1 <project name="Mir" default="compile" basedir=".">
2
3
4 <!-- Property Definitions
5      app.name          Base name of this application, used to
6                        construct filenames and directories.
7
8      deploy.home       The name of the directory into which the
9                        deployment hierarchy will be created.
10                        Normally, this will be the name of a
11                        subdirectory under $TOMCAT_HOME/webapps.
12
13      dist.home         The name of the base directory in which
14                        distribution files are created.
15
16      dist.src          The name of the distribution JAR file
17                        containing the application source code,
18                        to be stored in the "dist.home" directory.
19                        This filename should end with ".jar".
20
21      dist.war          The name of the Web ARchive (WAR) file
22                        containing our deployable application.
23                        This filename should end with ".war".
24
25      javadoc.home      The name of the base directory in which
26                        the JavaDoc documentation for this application
27                        is generated.
28
29      tomcat.home       The name of the base directory in which
30                        Tomcat has been installed.  This value is
31                        normally set automatically from the value
32                        of the TOMCAT_HOME environment variable.
33 -->
34
35   <property name="app.name"       value="Mir"/>
36   <property name="deploy.home"    value="../${app.name}"/>
37   <property name="dist.home"      value="${deploy.home}"/>
38   <property name="dist.src"       value="${app.name}.jar"/>
39   <property name="dist.war"       value="${app.name}.war"/>
40   <property name="javadoc.home"   value="${deploy.home}/javadoc"/>
41
42
43 <!-- The "prepare" target is used to construct the deployment home
44      directory structure (if necessary), and to copy in static files
45      as required.  In the example below, Ant is instructed to create
46      the deployment directory, copy the contents of the "web/" source
47      hierarchy, and set up the WEB-INF subdirectory appropriately.
48 -->
49
50   <target name="prepare">
51     <mkdir  dir="${deploy.home}"/>
52     <copy todir="${deploy.home}">
53       <fileset dir="web"/>
54     </copy>
55     <mkdir  dir="${deploy.home}/templates"/>
56     <copy todir="${deploy.home}/templates">
57       <fileset dir="templates"/>
58     </copy>
59     <mkdir  dir="${deploy.home}/src"/>
60     <copy todir="${deploy.home}/src">
61       <fileset dir="source"/>
62     </copy>
63
64     <mkdir  dir="${deploy.home}/WEB-INF"/>
65     <copy  file="etc/web.xml"          tofile="${deploy.home}/WEB-INF/web.xml"/>
66     <mkdir  dir="${deploy.home}/WEB-INF/classes"/>
67     <mkdir  dir="${deploy.home}/WEB-INF/lib"/>
68     <copy todir="${deploy.home}/WEB-INF/lib">
69       <fileset dir="lib">
70         <exclude name="ant.jar"/>
71         <exclude name="xerces.jar"/>
72       </fileset>
73     </copy>
74     <mkdir  dir="${javadoc.home}"/>
75     <mkdir  dir="${deploy.home}/log"/>
76
77   </target>
78
79
80 <!-- The "clean" target removes the deployment home directory structure,
81      so that the next time the "compile" target is requested, it will need
82      to compile everything from scratch.
83 -->
84
85
86   <target name="clean">
87     <delete dir="${deploy.home}"/>
88   </target>
89
90
91 <!-- The "compile" target is used to compile (or recompile) the Java classes
92      that make up this web application.  The recommended source code directory
93      structure makes this very easy because the <javac> task automatically
94      works its way down a source code hierarchy and compiles any class that
95      has not yet been compiled, or where the source file is newer than the
96      class file.
97
98      Feel free to adjust the compilation option parameters (debug,
99      optimize, and deprecation) to suit your requirements.  It is also
100      possible to base them on properties, so that you can adjust this
101      behavior at runtime.
102
103      The "compile" task depends on the "prepare" task, so the deployment
104      home directory structure will be created if needed the first time.
105 -->
106
107   <target name="compile" depends="prepare">
108     <javac srcdir="source" destdir="${deploy.home}/WEB-INF/classes"
109            classpath="${deploy.home}/WEB-INF/classes"
110            debug="on" optimize="off" deprecation="on"/>
111     <copy   todir="${deploy.home}/WEB-INF/classes">
112       <fileset dir="source" includes="**/*.properties"/>
113     </copy>
114   </target>
115
116
117 <!-- The "javadoc" target is used to create the Javadoc API documentation
118      for the Java classes in this web application.  It is assumed that
119      this documentation is included in the deployed application, so the
120      example below generates the Javadoc HTML files in a subdirectory under
121      the deployment home directory.  Feel free to customize the options for
122      the JavaDoc task, after consulting the Ant documentation.
123 -->
124
125   <target name="javadoc" depends="prepare">
126     <javadoc packagenames="mir.*, mircoders.*"
127              sourcefiles="source/${app.name}.java,source/Open${app.name}.java"
128              sourcepath="source"
129              destdir="${javadoc.home}"/>
130   </target>
131
132
133 <!-- The "all" target rebuilds everything by executing the "clean"
134      target first, which forces the "compile" target to compile all
135      source code instead of just the files that have been changed.
136 -->
137
138   <target name="all" depends="clean,prepare,compile,javadoc"/>
139
140
141 <!-- The "dist" target builds the distribution Web ARchive (WAR) file
142      for this application, suitable for distribution to sites that wish
143      to install your application.  It also creates a JAR file containing
144      the source code for this application, if you wish to distribute
145      that separately.
146 -->
147   <target name="dist" depends="prepare,compile">
148     <jar jarfile="${dist.src}"
149          basedir="./source"/>
150     <jar jarfile="${dist.war}"
151          basedir="${deploy.home}"/>
152   </target>
153
154 </project>