summaryrefslogtreecommitdiff
path: root/tomcat/tomcat.patch
blob: 3ec194448f5075e7cdfa0171b076487163139491 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
--- misc/apache-tomcat-5.5.36-src/servletapi/build.xml	Thu Jun 19 16:03:59 2008
+++ misc/build/apache-tomcat-5.5.36-src/servletapi/build.xml	Thu Jun 19 15:56:18 2008
@@ -1,1 +1,21 @@
-dummy
+<project name="jsr154 in Apache OpenOffice" default="debuild" basedir=".">
+
+  <target name="debuild"
+   description="Build jsr154 for Apache OpenOffice (Default)">
+    <echo message="Building Servlet 2.4 API"/>
+    <ant antfile="jsr154/build.xml"
+         target="jar"
+         inheritAll="false"
+    />
+  </target>
+
+  <target name="clean" description="Clean">
+    <echo message="Cleaning Servlet 2.4 API"/>
+    <ant antfile="jsr154/build.xml"
+         target="clean"
+         inheritAll="false"
+    />
+    <delete dir="tmp"/>
+  </target>
+
+</project>