[jboss-cvs] JBossAS SVN: r67384 - trunk/tomcat.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Thu Nov 22 16:38:42 EST 2007


Author: dimitris at jboss.org
Date: 2007-11-22 16:38:42 -0500 (Thu, 22 Nov 2007)
New Revision: 67384

Modified:
   trunk/tomcat/build.xml
Log:
Do not duplicate el-api.jar, jsp-api.jar and servlet-api.jar in the web.deployer directory. Store one copy in server/default|all/lib and use the original name (like in 4.2.x)

Modified: trunk/tomcat/build.xml
===================================================================
--- trunk/tomcat/build.xml	2007-11-22 17:50:55 UTC (rev 67383)
+++ trunk/tomcat/build.xml	2007-11-22 21:38:42 UTC (rev 67384)
@@ -243,7 +243,9 @@
     <copy todir="${build.deploy}/jboss-web.deployer">
       <fileset dir="${jboss.web.lib}">
         <include name="*.jar"/>
-        <exclude name="annotations-api.jar"/>
+        <exclude name="el-api.jar"/>
+        <exclude name="jsp-api.jar"/>
+        <exclude name="servlet-api.jar"/>
       </fileset>
     </copy>
     




More information about the jboss-cvs-commits mailing list