[jboss-cvs] JBossAS SVN: r69000 - in projects/ejb3/trunk/ejb3-installer/src/main/resources: conf and 1 other directory.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Tue Jan 15 17:43:15 EST 2008


Author: ALRubinger
Date: 2008-01-15 17:43:15 -0500 (Tue, 15 Jan 2008)
New Revision: 69000

Added:
   projects/ejb3/trunk/ejb3-installer/src/main/resources/conf/jbossas-ejb3-files-to-place-in-client.txt
Modified:
   projects/ejb3/trunk/ejb3-installer/src/main/resources/build-install-ejb3-plugin.xml
Log:
Patch "client" of AS Installation

Modified: projects/ejb3/trunk/ejb3-installer/src/main/resources/build-install-ejb3-plugin.xml
===================================================================
--- projects/ejb3/trunk/ejb3-installer/src/main/resources/build-install-ejb3-plugin.xml	2008-01-15 22:24:35 UTC (rev 68999)
+++ projects/ejb3/trunk/ejb3-installer/src/main/resources/build-install-ejb3-plugin.xml	2008-01-15 22:43:15 UTC (rev 69000)
@@ -19,13 +19,14 @@
   <property environment="env" />
   <property name="jboss.home" value="${env.JBOSS_HOME}" />
   <property name="installer.home" value="${env.JBOSS_EJB3_PLUGIN_INSTALL_HOME}" />
-  
+
   <!-- Configuration -->
   <property name="installer.lib" value="${installer.home}/lib" />
 
-  <!-- Includes file of patterns to remove from existing AS Installation -->
+  <!-- Includefiles -->
   <property name="file.jbossas.remove.includes" value="conf/jbossas-ejb3-files-to-remove.txt" />
   <property name="file.jbossas.serverlib.includes" value="conf/jbossas-ejb3-files-to-place-in-serverlib.txt" />
+  <property name="file.jbossas.client.includes" value="conf/jbossas-ejb3-files-to-place-in-client.txt" />
 
   <!-- Servers to patch -->
   <property name="servers" value="default;all" />
@@ -80,6 +81,9 @@
 
     <echo>Installing EJB3 Plugin to ${jboss.home}</echo>
 
+    <!-- Copy all binaries to "client" -->
+    <antcall target="install-client" />
+
     <!-- Copy all binaries to "lib" directory of each server -->
     <foreach list="${servers}" delimiter=";" param="serverName" target="install-libs" inheritall="true" />
 
@@ -102,6 +106,21 @@
   </target>
 
   <!-- 
+    
+    Installs binaries to the "client" directory of JBOSS_HOME
+    
+    -->
+  <target name="install-client">
+
+    <echo>Installing EJB3 Binaries to "client" of ${jboss.home}</echo>
+
+    <copy todir="${jboss.home}/client">
+      <fileset dir="${installer.lib}" includesfile="${file.jbossas.client.includes}" />
+    </copy>
+
+  </target>
+
+  <!-- 
   
   Installs binaries to the "lib" directory of the
   specified "serverName"

Added: projects/ejb3/trunk/ejb3-installer/src/main/resources/conf/jbossas-ejb3-files-to-place-in-client.txt
===================================================================
--- projects/ejb3/trunk/ejb3-installer/src/main/resources/conf/jbossas-ejb3-files-to-place-in-client.txt	                        (rev 0)
+++ projects/ejb3/trunk/ejb3-installer/src/main/resources/conf/jbossas-ejb3-files-to-place-in-client.txt	2008-01-15 22:43:15 UTC (rev 69000)
@@ -0,0 +1 @@
+jboss-ejb3-ext-api.jar
\ No newline at end of file


Property changes on: projects/ejb3/trunk/ejb3-installer/src/main/resources/conf/jbossas-ejb3-files-to-place-in-client.txt
___________________________________________________________________
Name: svn:mime-type
   + text/plain




More information about the jboss-cvs-commits mailing list