summaryrefslogtreecommitdiff
path: root/tomcat/build.xml
diff options
context:
space:
mode:
authorNorbert Thiebaud <nthiebaud@gmail.com>2012-09-29 02:02:03 -0500
committerNorbert Thiebaud <nthiebaud@gmail.com>2012-09-29 02:43:28 -0500
commit311babc08009ff4014f9b6b14d82ca41f5e6f942 (patch)
tree9c37fb7787108cc3ca4a5ecb52e8b9afd8f9f172 /tomcat/build.xml
parentd756f2a304ed0921e1791c8eb91ce7fb7a085529 (diff)
gbuildify tomcat
Change-Id: Ibd7b71292450db8e3e98f9ede5a836182eb38770
Diffstat (limited to 'tomcat/build.xml')
-rw-r--r--tomcat/build.xml31
1 files changed, 31 insertions, 0 deletions
diff --git a/tomcat/build.xml b/tomcat/build.xml
new file mode 100644
index 000000000000..2d54d3df39da
--- /dev/null
+++ b/tomcat/build.xml
@@ -0,0 +1,31 @@
+<project name="jsr152 and jsr154 in Debian" default="debuild" basedir=".">
+
+ <target name="debuild"
+ description="Build jsr154 and jsr152 for Debian (Default)">
+ <echo message="Building Servlet 2.4 API"/>
+ <ant antfile="jsr154/build.xml"
+ target="dist"
+ inheritAll="false"
+ />
+ <echo message="Building JSP 2.0 API"/>
+ <ant antfile="jsr152/build.xml"
+ target="dist"
+ inheritAll="false"
+ />
+ </target>
+
+ <target name="clean" description="Clean">
+ <echo message="Cleaning JSP 2.0 API"/>
+ <ant antfile="jsr152/build.xml"
+ target="clean"
+ inheritAll="false"
+ />
+ <echo message="Cleaning Servlet 2.4 API"/>
+ <ant antfile="jsr154/build.xml"
+ target="clean"
+ inheritAll="false"
+ />
+ <delete dir="tmp"/>
+ </target>
+
+</project>