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

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Mon Feb 4 02:38:47 EST 2008


Author: ALRubinger
Date: 2008-02-04 02:38:47 -0500 (Mon, 04 Feb 2008)
New Revision: 69568

Modified:
   projects/ejb3/trunk/installer/src/main/resources/build-install-ejb3-plugin.xml
Log:
Install the EJB3 Core Client into the existing AS installation

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-02-04 07:38:14 UTC (rev 69567)
+++ projects/ejb3/trunk/installer/src/main/resources/build-install-ejb3-plugin.xml	2008-02-04 07:38:47 UTC (rev 69568)
@@ -40,6 +40,9 @@
   <property name="file.jbossas.jbossall.excludes" value="conf/jbossas-ejb3-jar-jbossall-excludes.txt" />
   <property name="file.jbossas.ejb3client.includes" value="conf/jbossas-ejb3-jar-ejb3client-includes.txt" />
 
+  <!-- File names -->
+  <property name="filename.jbossas.ejb3.client" value="jboss-ejb3-client.jar" />
+
   <!-- Servers to patch, semi-colon delimited -->
   <property name="servers.unclustered" value="default" />
   <property name="servers.clustered" value="all" />
@@ -131,8 +134,8 @@
     <foreach list="${servers.clustered}" delimiter=";" param="serverName" target="create-ejb3-deployer" inheritall="true" />
 
     <!-- Rebuild Client JARs -->
+    <antcall target="rebuild-jboss-ejb3-client" />
     <antcall target="rebuild-jbossall-client" />
-    <antcall target="rebuild-jboss-ejb3-client" />
 
   </target>
 
@@ -274,7 +277,14 @@
     
   -->
   <target name="rebuild-jboss-ejb3-client">
-    <echo>IMPLEMENT</echo>
+    
+    <echo>Copying EJB3 Client JAR</echo>
+    
+    <copy todir="${jboss.client}" verbose="true">
+      <fileset dir="${installer.lib}">
+        <include name="${filename.jbossas.ejb3.client}" />
+      </fileset>
+    </copy>
   </target>
 
 </project>
\ No newline at end of file




More information about the jboss-cvs-commits mailing list