[jboss-cvs] JBossAS SVN: r80779 - projects/ejb3/trunk/installer/src/main/resources.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Mon Nov 10 22:28:04 EST 2008


Author: ALRubinger
Date: 2008-11-10 22:28:04 -0500 (Mon, 10 Nov 2008)
New Revision: 80779

Modified:
   projects/ejb3/trunk/installer/src/main/resources/build-install-ejb3-plugin.xml
Log:
[EJBTHREE-1576] Update the EJB3 Plugin Installer to patch binaries to the new shared server lib

Modified: projects/ejb3/trunk/installer/src/main/resources/build-install-ejb3-plugin.xml
===================================================================
--- projects/ejb3/trunk/installer/src/main/resources/build-install-ejb3-plugin.xml	2008-11-11 03:14:03 UTC (rev 80778)
+++ projects/ejb3/trunk/installer/src/main/resources/build-install-ejb3-plugin.xml	2008-11-11 03:28:04 UTC (rev 80779)
@@ -115,9 +115,8 @@
     <!-- Copy all binaries to "client" -->
     <antcall target="install-client" />
 
-    <!-- Copy all binaries to "lib" directory of each server -->
-    <foreach list="${servers.unclustered}" delimiter=";" param="serverName" target="install-libs" inheritall="true" />
-    <foreach list="${servers.clustered}" delimiter=";" param="serverName" target="install-libs" inheritall="true" />
+    <!-- Copy all binaries to shared "lib" directory -->
+  	<antcall target="install-libs" />
 
     <!-- Copy all deployable files to "deploy" directory of each server -->
     <foreach list="${servers.unclustered}" delimiter=";" param="serverName" target="install-deploy" inheritall="true" />
@@ -168,15 +167,14 @@
 
   <!-- 
   
-  Installs binaries to the "lib" directory of the
-  specified "serverName"
+  Installs binaries to the shared server "lib" directory
   
   -->
   <target name="install-libs">
 
-    <echo>Installing EJB3 Binaries to "lib" of Server "${serverName}"</echo>
+    <echo>Installing EJB3 Binaries to shared server "lib"</echo>
 
-    <copy todir="${jboss.home}/server/${serverName}/lib" verbose="true">
+    <copy todir="${jboss.home}/server/lib" verbose="true">
       <fileset dir="${installer.lib}" includesfile="${file.jbossas.serverlib.includes}" />
     </copy>
 




More information about the jboss-cvs-commits mailing list