blob: 59d811a4279c6975eb7cd96f13334cf2134b3589 (
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
|
--- ../build.xml 2007-01-26 14:42:58.000000000 -0500
+++ build.xml 2007-01-26 14:58:59.000000000 -0500
@@ -94,6 +94,7 @@
excludes="**/CVS/**,**/.svn/**">
<classpath refid="tomcat.classpath" />
<exclude name="org/apache/tomcat/util/net/puretls/**" />
+ <exclude name="javax/servlet/**" />
</javac>
<tstamp>
<format property="TODAY" pattern="MMM d yyyy" locale="en"/>
@@ -133,27 +134,27 @@
</fileset>
</jar>
- <!-- Servlet 2.5 Implementation JAR File -->
+ <!-- Servlet 2.5 Implementation JAR File
<jar jarfile="${servlet-api.jar}">
<fileset dir="${tomcat.classes}">
<include name="javax/servlet/*" />
<include name="javax/servlet/http/*" />
<include name="javax/servlet/resources/*" />
- <!-- Javadoc and i18n exclusions -->
<exclude name="**/package.html" />
<exclude name="**/LocalStrings_*" />
</fileset>
</jar>
+ -->
- <!-- JSP 2.1 Implementation JAR File -->
+ <!-- JSP 2.1 Implementation JAR File
<jar jarfile="${jsp-api.jar}">
<fileset dir="${tomcat.classes}">
<include name="javax/servlet/jsp/**" />
- <!-- Javadoc and i18n exclusions -->
<exclude name="**/package.html" />
<exclude name="**/LocalStrings_*" />
</fileset>
</jar>
+ -->
<!-- JSP 2.1 EL Implementation JAR File -->
<jar jarfile="${el-api.jar}">
@@ -447,11 +448,16 @@
<target name="deploy" depends="build-only,build-docs">
+<!--
<copy tofile="${tomcat.build}/bin/tomcat-native.tar.gz"
file="${tomcat-native.tar.gz}" />
+-->
<copy todir="${tomcat.build}/bin" file="${commons-daemon.jar}" />
+
+<!--
<copy todir="${tomcat.build}/bin" file="${commons-daemon.jsvc.tar.gz}" />
+-->
<!-- Copy scripts -->
<copy todir="${tomcat.build}/bin">
@@ -492,8 +498,10 @@
excludes="**/CVS/**,**/.svn/**">
</javac>
+<!--
<copy file="${tomcat-dbcp.jar}" todir="${tomcat.build}/lib" />
<copy file="${jasper-jdt.jar}" todir="${tomcat.build}/lib" />
+-->
</target>
|