aboutsummaryrefslogtreecommitdiff
path: root/id.templates/build.xml
diff options
context:
space:
mode:
authorrudolf <rudolf@d688527b-c9ab-4aba-bd8d-4036d912da1d>2004-07-27 13:06:39 +0000
committerrudolf <rudolf@d688527b-c9ab-4aba-bd8d-4036d912da1d>2004-07-27 13:06:39 +0000
commit8b171d70a451062dd26b12aeeab2f87ccd8679b3 (patch)
tree1122543b5d08673db33933698e714c9001fcabfd /id.templates/build.xml
parent566ac11510f83be490a3539c9b0b3e79941092a7 (diff)
downloadmoa-id-spss-8b171d70a451062dd26b12aeeab2f87ccd8679b3.tar.gz
moa-id-spss-8b171d70a451062dd26b12aeeab2f87ccd8679b3.tar.bz2
moa-id-spss-8b171d70a451062dd26b12aeeab2f87ccd8679b3.zip
initial check in (RSCH)
git-svn-id: https://joinup.ec.europa.eu/svn/moa-idspss/trunk@153 d688527b-c9ab-4aba-bd8d-4036d912da1d
Diffstat (limited to 'id.templates/build.xml')
-rw-r--r--id.templates/build.xml32
1 files changed, 32 insertions, 0 deletions
diff --git a/id.templates/build.xml b/id.templates/build.xml
new file mode 100644
index 000000000..696616eaa
--- /dev/null
+++ b/id.templates/build.xml
@@ -0,0 +1,32 @@
+<?xml version="1.0"?>
+<!--
+
+ Ant Buildfile for MOA ID templates component
+
+ $Id$
+
+-->
+<project name="id.templates" default="package" basedir=".">
+ <property name="tmp" value="tmp"/>
+ <property name="dist" value="${tmp}/dist"/>
+
+ <!-- set up directories etc. -->
+ <target name="init">
+ <tstamp/>
+ <echo>Time (hhmm): ${TSTAMP}</echo>
+ <mkdir dir="${tmp}"/>
+ <mkdir dir="${dist}"/>
+ </target>
+
+ <!-- package templates.war -->
+ <target name="package" depends="init">
+ <war warfile="${dist}/moaid-templates.war" webxml="web.xml">
+ <fileset dir="html"/>
+ </war>
+ </target>
+
+ <!-- clean temporary files -->
+ <target name="clean">
+ <delete dir="${tmp}"/>
+ </target>
+</project>