blob: 133b67d69fbaa296543fdd2387348e724a1e3351 (
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
26
27
28
29
30
31
32
33
34
35
36
|
*** /dev/null 2008-02-01 11:10:25.957002171 +0100
--- misc/build/jakarta-tomcat-5.0.30-src/jakarta-servletapi-5/build.xml 2008-02-01 16:10:27.000000000 +0100
***************
*** 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>
|