Add webapp patch.

This commit is contained in:
Andrew Overholt 2006-03-01 14:49:15 +00:00
parent 185a712b44
commit a074adedf4
1 changed files with 67 additions and 0 deletions

View File

@ -0,0 +1,67 @@
Index: build.properties
===================================================================
RCS file: /cvsroot/eclipse/org.eclipse.help.webapp/build.properties,v
retrieving revision 1.32
diff -u -r1.32 build.properties
--- build.properties 18 Mar 2005 08:00:28 -0000 1.32
+++ build.properties 28 Feb 2006 22:52:35 -0000
@@ -33,5 +33,5 @@
../org.eclipse.help.appserver/bin,\
../org.eclipse.help.appserver,\
../org.eclipse.help.appserver/@dot,\
- ../org.eclipse.tomcat/servlet.jar,\
+ ../org.eclipse.tomcat/servletapi5.jar,\
../org.eclipse.tomcat/jasper-runtime.jar
Index: build.xml
===================================================================
RCS file: /cvsroot/eclipse/org.eclipse.help.webapp/build.xml,v
retrieving revision 1.65
diff -u -r1.65 build.xml
--- build.xml 18 Mar 2005 07:55:40 -0000 1.65
+++ build.xml 28 Feb 2006 22:52:35 -0000
@@ -126,7 +126,7 @@
<pathelement path="../org.eclipse.help"/>
<pathelement path="../org.eclipse.help.base"/>
<pathelement path="../org.eclipse.help.appserver"/>
- <pathelement path="../org.eclipse.tomcat/servlet.jar"/>
+ <pathelement path="../org.eclipse.tomcat/servletapi5.jar"/>
<pathelement path="../org.eclipse.tomcat/jasper-runtime.jar"/>
</classpath>
<src path="src_servlets/" />
@@ -154,11 +154,14 @@
<!-- generate java code from JSPs -->
<path id="jasper.classpath" >
<pathelement location="../org.apache.ant/lib/ant.jar"/>
- <pathelement location="../org.apache.ant/lib/optional.jar"/>
+ <pathelement location="../org.apache.ant/lib/ant-launcher.jar"/>
<pathelement location="../org.eclipse.tomcat/jasper-compiler.jar" />
<pathelement location="../org.eclipse.tomcat/jasper-runtime.jar" />
- <pathelement location="../org.eclipse.tomcat/servlet.jar" />
- <pathelement location="../org.eclipse.tomcat/tomcat_util.jar" />
+ <pathelement location="../org.eclipse.tomcat/servletapi5.jar" />
+ <pathelement location="../org.eclipse.tomcat/tomcat-util.jar" />
+ <pathelement location="../org.eclipse.tomcat/jspapi.jar"/>
+ <pathelement location="../org.eclipse.tomcat/commons-el.jar"/>
+ <pathelement location="../org.eclipse.tomcat/commons-logging.jar"/>
</path>
<delete dir="${temp.folder}/jsp.jar.src"/>
<mkdir dir="${temp.folder}/jsp.jar.src"/>
@@ -168,7 +171,6 @@
failonerror="false"
classpathref="jasper.classpath"
output="${temp.folder}/WEB-INF/lib/jsp.jar.bin.log">
- <arg value="-v3" />
<arg value="-d" /><arg value="${temp.folder}/jsp.jar.src" />
<arg value="-die" />
<arg value="-p" /><arg value="org.eclipse.help.internal.webapp.jsp"/>
@@ -202,8 +204,9 @@
<pathelement path="../org.eclipse.help"/>
<pathelement path="../org.eclipse.help.base"/>
<pathelement path="../org.eclipse.help.appserver"/>
- <pathelement path="../org.eclipse.tomcat/servlet.jar"/>
+ <pathelement path="../org.eclipse.tomcat/servletapi5.jar"/>
<pathelement path="../org.eclipse.tomcat/jasper-runtime.jar"/>
+ <pathelement path="../org.eclipse.tomcat/jspapi.jar"/>
</classpath>
<src path="${temp.folder}/jsp.jar.src/" />
<!-- custom begin -->