[jbpm-commits] JBoss JBPM SVN: r5314 - in jbpm4/trunk/modules/distro/src/main/files/jboss: config.jboss5/deploy/jbpm and 1 other directory.

do-not-reply at jboss.org do-not-reply at jboss.org
Thu Jul 16 20:13:46 EDT 2009


Author: alex.guizar at jboss.com
Date: 2009-07-16 20:13:45 -0400 (Thu, 16 Jul 2009)
New Revision: 5314

Added:
   jbpm4/trunk/modules/distro/src/main/files/jboss/config.jboss5/deploy/jbpm/jbpm-destinations-service.xml
Modified:
   jbpm4/trunk/modules/distro/src/main/files/jboss/build.xml
Log:
[JBPM-2210] Add support for AS 5.1.x 
provide jboss messaging descriptor

Modified: jbpm4/trunk/modules/distro/src/main/files/jboss/build.xml
===================================================================
--- jbpm4/trunk/modules/distro/src/main/files/jboss/build.xml	2009-07-16 18:16:26 UTC (rev 5313)
+++ jbpm4/trunk/modules/distro/src/main/files/jboss/build.xml	2009-07-17 00:13:45 UTC (rev 5314)
@@ -202,12 +202,6 @@
       </fileset>
     </copy>
 
-    <copy todir="${jboss.server.config.dir}/deployers/jbpm.deployer" overwrite="true">
-      <fileset dir="${jbpm.home}/lib">
-        <include name="jbpm-spi.jar"/>
-      </fileset>
-    </copy>
-
     <mkdir dir="${jboss.home}/docs/examples/jbpm" />
     <copy todir="${jboss.home}/docs/examples/jbpm" overwrite="true">
       <fileset dir="${jbpm.home}/jboss/datasources" />
@@ -238,6 +232,12 @@
         <include name="jbpm-jboss5.jar"/>
       </fileset>
     </copy>
+
+    <copy todir="${jboss.server.config.dir}/deployers/jbpm.deployer" overwrite="true">
+      <fileset dir="${jbpm.home}/lib">
+        <include name="jbpm-spi.jar"/>
+      </fileset>
+    </copy>
   </target>
 
   <target name="internal.install.idm.into.jboss" if="jbpm.identity.idm">

Added: jbpm4/trunk/modules/distro/src/main/files/jboss/config.jboss5/deploy/jbpm/jbpm-destinations-service.xml
===================================================================
--- jbpm4/trunk/modules/distro/src/main/files/jboss/config.jboss5/deploy/jbpm/jbpm-destinations-service.xml	                        (rev 0)
+++ jbpm4/trunk/modules/distro/src/main/files/jboss/config.jboss5/deploy/jbpm/jbpm-destinations-service.xml	2009-07-17 00:13:45 UTC (rev 5314)
@@ -0,0 +1,23 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+  This file defines the default queue that jBPM ships with. You can add other
+  destinations to this file, or you can create other *-service.xml files to
+  contain your application's destinations.
+-->
+<server>
+
+  <!--
+    The default command queue. This destination is used by the
+    JmsMessageSession.
+  -->
+  <mbean code="org.jboss.jms.server.destination.QueueService"
+    name="jboss.messaging.destination:service=Queue,name=JbpmCommandQueue"
+    xmbean-dd="xmdesc/Queue-xmbean.xml">
+    <depends optional-attribute-name="ServerPeer">
+      jboss.messaging:service=ServerPeer
+    </depends>
+    <depends>jboss.messaging:service=PostOffice</depends>
+  </mbean>
+
+</server>
\ No newline at end of file



More information about the jbpm-commits mailing list