1 <?xml version="1.0" encoding="ISO-8859-1"?>
2 <project name="Siman-War" default="build-war">
4 <property environment="env" />
6 <property file="build.properties" description="set the build parameters" />
7 <property file="../${siman-common.project.name}/build.properties" description="set the build parameters" />
8 <property file="../${splat.project.name}/build.properties" description="set the build parameters" />
10 <property name="time.simple.pattern" value="dd/MM/yyyy" />
12 <format property="datesimple" pattern="${time.simple.pattern}" />
15 <property name="time.pattern" value="hh:mm:ss" />
17 <format property="time" pattern="${time.pattern}" />
20 <!-- ================================================= -->
21 <!-- siman-common: Build Siman-Common project -->
22 <!-- ================================================= -->
23 <target name="siman-common" description="Builds Siman-Common project">
24 <ant dir="../${siman-common.project.name}" />
27 <!-- ================================================= -->
28 <!-- copy-config: Copy parametrized config files -->
29 <!-- ================================================= -->
30 <macrodef name="copy-config">
31 <!-- Parameter "mode" can be equal to "debug" or "release" -->
32 <attribute name="mode" />
34 <echo message="Generating configuration in @{mode} mode" />
35 <!-- Copy files from config source directory according to the given mode -->
36 <copy todir="${basedir}/${config.@{mode}.dir}" overwrite="true">
37 <fileset dir="${config.src.dir}/templates">
39 <!-- Transform the files from templates substituting properties values -->
41 <filter token="datesimple" value="${datesimple}" />
42 <filter token="time" value="${time}" />
43 <!-- Get properties to substitute according to the given mode -->
44 <filtersfile file="${config.src.dir}/@{mode}.properties" />
45 <!-- Substitute the config source directory path value-->
46 <filter token="config.src.dir" value="${basedir}${file.separator}${config.src.dir}${file.separator}templates" />
52 <!-- ================================================= -->
53 <!-- debug-config: Generate parametrized config files -->
54 <!-- ================================================= -->
55 <target name="debug-config" description="Generate parametrized debug config files">
56 <copy-config mode="debug" />
59 <!-- =================================================== -->
60 <!-- release-config: Generate parametrized config files -->
61 <!-- =================================================== -->
62 <target name="release-config" description="Generate parametrized release config files">
63 <copy-config mode="release" />
66 <!-- ===================================================================== -->
67 <!-- build-dist : Create the war file -->
68 <!-- ===================================================================== -->
69 <target name="build-war" depends="clean, siman-common, release-config" description="Builds the WAR distribution">
70 <echo message="build ${webapp.name}.war" />
72 <mkdir dir="${siman.dist.dir}" />
73 <war destfile="${siman.dist.dir}/${webapp.name}.war" webxml="${basedir}/${siman.content.dir}/WEB-INF/web.xml">
74 <fileset dir="${siman.content.dir}" />
75 <!-- Copy all sources except those which should be generated -->
76 <classes dir="${siman.bin.dir}/classes">
77 <present present="srconly" targetdir="${config.release.dir}" />
79 <!-- Copy generated sources -->
80 <zipfileset dir="${config.release.dir}" prefix="WEB-INF/classes" />
82 <attribute name="Built-By" value="${app.author}" />
83 <attribute name="Version" value="${app.version}" />
84 <attribute name="Built-Date" value="${datesimple}" />
86 <lib dir="${basedir}/../${siman-common.project.name}/${siman-common.dist.dir}" includes="**/*.jar" />
87 <lib dir="${basedir}/../${siman-common.project.name}/${siman-common.lib.dir}" includes="**/*.jar" />
88 <lib dir="${basedir}/../${splat.project.name}/${splat.dist.dir}" includes="**/*.jar" />
89 <lib dir="${basedir}/../${splat.project.name}/${splat.lib.dir}" includes="**/*.jar" />
93 <!-- ================================================= -->
94 <!-- clean: Clean the dist directory -->
95 <!-- ================================================= -->
96 <target name="clean" description="clean the build directory">
97 <echo message="deleting files in ${siman.dist.dir}" />
98 <delete includeemptydirs="true" failonerror="false">
99 <fileset dir="${siman.dist.dir}" includes="**/*" />