aboutsummaryrefslogtreecommitdiff
path: root/id.templates/build.xml
diff options
context:
space:
mode:
author(no author) <(no author)@d688527b-c9ab-4aba-bd8d-4036d912da1d>2005-11-30 15:23:57 +0000
committer(no author) <(no author)@d688527b-c9ab-4aba-bd8d-4036d912da1d>2005-11-30 15:23:57 +0000
commita020e34129ea9c4c6942345bdc66956235278786 (patch)
treea7f9210f813d13c6bd4f58515192cdba99dd2298 /id.templates/build.xml
parent760d0e30c75096646c0dfadfc44bb00a923a4e6d (diff)
downloadmoa-id-spss-a020e34129ea9c4c6942345bdc66956235278786.tar.gz
moa-id-spss-a020e34129ea9c4c6942345bdc66956235278786.tar.bz2
moa-id-spss-a020e34129ea9c4c6942345bdc66956235278786.zip
This commit was manufactured by cvs2svn to create tagtags/Build_ID-1_3_0
'Build_ID-1_3_0'. git-svn-id: https://joinup.ec.europa.eu/svn/moa-idspss/tags/Build_ID-1_3_0@598 d688527b-c9ab-4aba-bd8d-4036d912da1d
Diffstat (limited to 'id.templates/build.xml')
-rw-r--r--id.templates/build.xml32
1 files changed, 0 insertions, 32 deletions
diff --git a/id.templates/build.xml b/id.templates/build.xml
deleted file mode 100644
index 696616eaa..000000000
--- a/id.templates/build.xml
+++ /dev/null
@@ -1,32 +0,0 @@
-<?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>