[jboss-cvs] JBossAS SVN: r60936 - branches/Branch_4_2/build.
jboss-cvs-commits at lists.jboss.org
jboss-cvs-commits at lists.jboss.org
Tue Feb 27 07:23:48 EST 2007
Author: dimitris at jboss.org
Date: 2007-02-27 07:23:48 -0500 (Tue, 27 Feb 2007)
New Revision: 60936
Modified:
branches/Branch_4_2/build/build-distr.xml
Log:
move el-api.jar, jsp-api.jar, servlet-api.jar from deploy/jboss.web to server/lib dir and maintain their original name
Modified: branches/Branch_4_2/build/build-distr.xml
===================================================================
--- branches/Branch_4_2/build/build-distr.xml 2007-02-27 11:24:09 UTC (rev 60935)
+++ branches/Branch_4_2/build/build-distr.xml 2007-02-27 12:23:48 UTC (rev 60936)
@@ -915,13 +915,20 @@
<!-- Copy the thirdparty libraries -->
<mkdir dir="${install.all.lib}"/>
- <copy tofile="${install.all.lib}/javax.servlet.jar" file="${jboss.web.lib}/servlet-api.jar"/>
- <copy tofile="${install.all.lib}/javax.servlet.jsp.jar" file="${jboss.web.lib}/jsp-api.jar"/>
- <copy tofile="${install.all.lib}/javax.el.jar" file="${jboss.web.lib}/el-api.jar"/>
+ <copy todir="${install.all.lib}" filtering="no">
+ <fileset dir="${jboss.web.lib}">
+ <include name="el-api.jar"/>
+ <include name="jsp-api.jar"/>
+ <include name="servlet-api.jar"/>
+ </fileset>
+ </copy>
<!-- jboss-remoting relies on this, so copy to the client dir -->
- <copy tofile="${install.client}/javax.servlet.jar"
- file="${jboss.web.lib}/servlet-api.jar"/>
+ <copy todir="${install.client}" filtering="no">
+ <fileset dir="${jboss.web.lib}">
+ <include name="servlet-api.jar"/>
+ </fileset>
+ </copy>
<!-- Copy the deployables -->
<mkdir dir="${install.server}/all/deploy/jboss-web.deployer"/>
More information about the jboss-cvs-commits
mailing list