[jboss-svn-commits] JBL Code SVN: r24160 - in labs/jbossesb/workspace/skeagh/examples: jms-bus and 4 other directories.

jboss-svn-commits at lists.jboss.org jboss-svn-commits at lists.jboss.org
Mon Dec 1 02:46:26 EST 2008


Author: tfennelly
Date: 2008-12-01 02:46:26 -0500 (Mon, 01 Dec 2008)
New Revision: 24160

Added:
   labs/jbossesb/workspace/skeagh/examples/jms-bus/
   labs/jbossesb/workspace/skeagh/examples/jms-bus/esb1/
   labs/jbossesb/workspace/skeagh/examples/jms-bus/esb2/
   labs/jbossesb/workspace/skeagh/examples/util/
   labs/jbossesb/workspace/skeagh/examples/util/README.TXT
   labs/jbossesb/workspace/skeagh/examples/util/jms-provider/
   labs/jbossesb/workspace/skeagh/examples/util/jms-provider/README.TXT
   labs/jbossesb/workspace/skeagh/examples/util/jms-provider/activemq.xml
   labs/jbossesb/workspace/skeagh/examples/util/jms-provider/pom.xml
Removed:
   labs/jbossesb/workspace/skeagh/examples/jms-routing/jms-provider/
Modified:
   labs/jbossesb/workspace/skeagh/examples/jms-routing/esb/
   labs/jbossesb/workspace/skeagh/examples/jms-routing/pom.xml
Log:
https://jira.jboss.org/jira/browse/JBESB-2182


Property changes on: labs/jbossesb/workspace/skeagh/examples/jms-routing/esb
___________________________________________________________________
Name: svn:ignore
   - jbossesb-examples-jms-router-esb-jms-router.iml

   + jbossesb-examples-jms-router-esb-jms-router.iml
runner


Modified: labs/jbossesb/workspace/skeagh/examples/jms-routing/pom.xml
===================================================================
--- labs/jbossesb/workspace/skeagh/examples/jms-routing/pom.xml	2008-12-01 07:43:33 UTC (rev 24159)
+++ labs/jbossesb/workspace/skeagh/examples/jms-routing/pom.xml	2008-12-01 07:46:26 UTC (rev 24160)
@@ -15,7 +15,6 @@
 
 	<modules>
         <module>esb</module>
-        <module>jms-provider</module>
         <module>jms-consumer</module>
 	</modules>
 

Added: labs/jbossesb/workspace/skeagh/examples/util/README.TXT
===================================================================
--- labs/jbossesb/workspace/skeagh/examples/util/README.TXT	                        (rev 0)
+++ labs/jbossesb/workspace/skeagh/examples/util/README.TXT	2008-12-01 07:46:26 UTC (rev 24160)
@@ -0,0 +1 @@
+This sub-folder contains common utilities used by the examples.
\ No newline at end of file

Added: labs/jbossesb/workspace/skeagh/examples/util/jms-provider/README.TXT
===================================================================
--- labs/jbossesb/workspace/skeagh/examples/util/jms-provider/README.TXT	                        (rev 0)
+++ labs/jbossesb/workspace/skeagh/examples/util/jms-provider/README.TXT	2008-12-01 07:46:26 UTC (rev 24160)
@@ -0,0 +1,3 @@
+This is an ActiveMQ JMS Provider for the examples.
+
+To Run, type "mvn activemq:run" on the command line in this folder.

Added: labs/jbossesb/workspace/skeagh/examples/util/jms-provider/activemq.xml
===================================================================
--- labs/jbossesb/workspace/skeagh/examples/util/jms-provider/activemq.xml	                        (rev 0)
+++ labs/jbossesb/workspace/skeagh/examples/util/jms-provider/activemq.xml	2008-12-01 07:46:26 UTC (rev 24160)
@@ -0,0 +1,20 @@
+<beans
+        xmlns="http://www.springframework.org/schema/beans"
+        xmlns:amq="http://activemq.org/config/1.0"
+        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+        xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd
+  http://activemq.org/config/1.0 http://activemq.apache.org/schema/activemq-core.xsd
+  http://activemq.apache.org/camel/schema/spring http://activemq.apache.org/camel/schema/spring/camel-spring.xsd">
+
+    <!-- Allows us to use system properties as variables in this configuration file -->
+    <bean class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer"/>
+
+    <broker xmlns="http://activemq.org/config/1.0" useJmx="false"  dataDirectory="${activemq.base}/target/activemq">
+
+        <transportConnectors>
+            <transportConnector uri="tcp://localhost:61717"/>
+        </transportConnectors>
+
+    </broker>
+
+</beans>
\ No newline at end of file


Property changes on: labs/jbossesb/workspace/skeagh/examples/util/jms-provider/activemq.xml
___________________________________________________________________
Name: svn:mime-type
   + text/xml
Name: svn:eol-style
   + native

Added: labs/jbossesb/workspace/skeagh/examples/util/jms-provider/pom.xml
===================================================================
--- labs/jbossesb/workspace/skeagh/examples/util/jms-provider/pom.xml	                        (rev 0)
+++ labs/jbossesb/workspace/skeagh/examples/util/jms-provider/pom.xml	2008-12-01 07:46:26 UTC (rev 24160)
@@ -0,0 +1,77 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+    <modelVersion>4.0.0</modelVersion>
+    <name>JBoss ESB - Examples JMS Provider (ActiveMQ)</name>
+    <groupId>jboss.jbossesb</groupId>
+    <artifactId>jbossesb-examples-jms-provider</artifactId>
+    <version>${jboss.esb.version}</version>
+    <url>http://www.jboss.org/jbossesb/</url>
+
+	<dependencies>
+        <dependency>
+			<groupId>log4j</groupId>
+			<artifactId>log4j</artifactId>
+			<version>1.2.14</version>
+		</dependency>
+		<dependency>
+            <groupId>org.apache.activemq</groupId>
+            <artifactId>activemq-core</artifactId>
+            <version>4.1.2</version>
+        </dependency>
+		<dependency>
+            <groupId>org.apache.derby</groupId>
+            <artifactId>derby</artifactId>
+            <version>10.1.1.0</version>
+        </dependency>
+        <dependency>
+            <groupId>mx4j</groupId>
+            <artifactId>mx4j</artifactId>
+            <version>3.0.2</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.geronimo.specs</groupId>
+            <artifactId>geronimo-jms_1.1_spec</artifactId>
+            <version>1.1.1</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.geronimo.specs</groupId>
+            <artifactId>geronimo-j2ee-management_1.1_spec</artifactId>
+            <version>1.0-M1</version>
+        </dependency>
+		<dependency>
+			<groupId>javax.jms</groupId>
+			<artifactId>jms</artifactId>
+			<version>1.1</version>
+		</dependency> 
+        <dependency>
+            <groupId>mx4j</groupId>
+            <artifactId>mx4j-tools</artifactId>
+            <version>3.0.1</version>
+        </dependency>
+		<dependency>
+			<groupId>backport-util-concurrent</groupId>
+			<artifactId>backport-util-concurrent</artifactId>
+			<version>3.1</version>
+		</dependency> 
+		<dependency>
+			<groupId>commons-logging</groupId>
+			<artifactId>commons-logging</artifactId>
+			<version>1.1.1</version>
+		</dependency> 
+	</dependencies>
+
+    <build>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.activemq.tooling</groupId>
+                <artifactId>maven-activemq-plugin</artifactId>
+                <version>4.1.2</version>
+                <configuration>
+                    <configFile>./activemq.xml</configFile>
+                    <fork>false</fork>
+                </configuration>
+            </plugin>
+        </plugins>
+    </build>
+
+</project>


Property changes on: labs/jbossesb/workspace/skeagh/examples/util/jms-provider/pom.xml
___________________________________________________________________
Name: svn:mime-type
   + text/xml
Name: svn:eol-style
   + native




More information about the jboss-svn-commits mailing list