[jboss-cvs] JBossAS SVN: r87855 - in branches/Branch_5_x: messaging/src/etc and 2 other directories.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Mon Apr 27 06:49:42 EDT 2009


Author: emuckenhuber
Date: 2009-04-27 06:49:42 -0400 (Mon, 27 Apr 2009)
New Revision: 87855

Added:
   branches/Branch_5_x/messaging/src/etc/deployers/
   branches/Branch_5_x/messaging/src/etc/deployers/messaging-definitions-jboss-beans.xml
Modified:
   branches/Branch_5_x/build/build-distr.xml
   branches/Branch_5_x/messaging/src/etc/deploy/common/messaging-jboss-beans.xml
Log:
move jms definitions to deployers/

Modified: branches/Branch_5_x/build/build-distr.xml
===================================================================
--- branches/Branch_5_x/build/build-distr.xml	2009-04-27 09:56:50 UTC (rev 87854)
+++ branches/Branch_5_x/build/build-distr.xml	2009-04-27 10:49:42 UTC (rev 87855)
@@ -730,6 +730,20 @@
         </fileset>
      </copy>
   	
+  	<!-- 
+  		The messaging profileservice definitions, to default and all
+  	-->
+  	<copy todir="${install.default.deployers}">
+  		<fileset dir="${_module.output}/etc/deployers">
+			<include name="*-jboss-beans.xml"/>
+  		</fileset>
+  	</copy>
+  	<copy todir="${install.all.deployers}">
+  		<fileset dir="${_module.output}/etc/deployers">
+			<include name="*-jboss-beans.xml"/>
+  		</fileset>
+  	</copy>
+  	
      <!-- copy example jms configs -->
      <!-- we don't need them anymore, they are all in examples/config now
      <mkdir dir="${install.examples.jms}"/>

Modified: branches/Branch_5_x/messaging/src/etc/deploy/common/messaging-jboss-beans.xml
===================================================================
--- branches/Branch_5_x/messaging/src/etc/deploy/common/messaging-jboss-beans.xml	2009-04-27 09:56:50 UTC (rev 87854)
+++ branches/Branch_5_x/messaging/src/etc/deploy/common/messaging-jboss-beans.xml	2009-04-27 10:49:42 UTC (rev 87855)
@@ -67,16 +67,4 @@
       <property name="destinationType">TopicTemplate</property>
    </bean>
 
-  <bean name="QueueMODefinition" class="org.jboss.jms.server.destination.QueueMODefinition">
-    <constructor>
-      <parameter><inject bean="ManagedObjectFactory" /></parameter>
-    </constructor>
-  </bean>
-
-  <bean name="TopicMODefinition" class="org.jboss.jms.server.destination.TopicMODefinition">
-    <constructor>
-      <parameter><inject bean="ManagedObjectFactory" /></parameter>
-    </constructor>
-  </bean>
-
 </deployment>

Added: branches/Branch_5_x/messaging/src/etc/deployers/messaging-definitions-jboss-beans.xml
===================================================================
--- branches/Branch_5_x/messaging/src/etc/deployers/messaging-definitions-jboss-beans.xml	                        (rev 0)
+++ branches/Branch_5_x/messaging/src/etc/deployers/messaging-definitions-jboss-beans.xml	2009-04-27 10:49:42 UTC (rev 87855)
@@ -0,0 +1,21 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+	The messaging profileservice definitions. This beans need to be installed
+	in the deployers phase. 
+-->
+<deployment xmlns="urn:jboss:bean-deployer:2.0">
+
+  <bean name="QueueMODefinition" class="org.jboss.jms.server.destination.QueueMODefinition">
+    <constructor>
+      <parameter><inject bean="ManagedObjectFactory" /></parameter>
+    </constructor>
+  </bean>
+
+  <bean name="TopicMODefinition" class="org.jboss.jms.server.destination.TopicMODefinition">
+    <constructor>
+      <parameter><inject bean="ManagedObjectFactory" /></parameter>
+    </constructor>
+  </bean>
+
+</deployment>
\ No newline at end of file




More information about the jboss-cvs-commits mailing list