You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by ch...@apache.org on 2009/06/10 16:46:45 UTC

svn commit: r783377 - in /activemq/sandbox/activemq-flow: ./ activemq-all/ activemq-spring/ activemq-spring/src/ activemq-spring/src/main/ activemq-spring/src/main/java/ activemq-spring/src/main/resources/ activemq-spring/src/test/ activemq-spring/src/...

Author: chirino
Date: Wed Jun 10 14:46:44 2009
New Revision: 783377

URL: http://svn.apache.org/viewvc?rev=783377&view=rev
Log:
adding activemq-spring module to hold spring integration bits.

Added:
    activemq/sandbox/activemq-flow/activemq-spring/
    activemq/sandbox/activemq-flow/activemq-spring/pom.xml
    activemq/sandbox/activemq-flow/activemq-spring/src/
    activemq/sandbox/activemq-flow/activemq-spring/src/main/
    activemq/sandbox/activemq-flow/activemq-spring/src/main/java/
    activemq/sandbox/activemq-flow/activemq-spring/src/main/resources/
    activemq/sandbox/activemq-flow/activemq-spring/src/test/
    activemq/sandbox/activemq-flow/activemq-spring/src/test/java/
    activemq/sandbox/activemq-flow/activemq-spring/src/test/resources/
Modified:
    activemq/sandbox/activemq-flow/activemq-all/pom.xml
    activemq/sandbox/activemq-flow/pom.xml

Modified: activemq/sandbox/activemq-flow/activemq-all/pom.xml
URL: http://svn.apache.org/viewvc/activemq/sandbox/activemq-flow/activemq-all/pom.xml?rev=783377&r1=783376&r2=783377&view=diff
==============================================================================
--- activemq/sandbox/activemq-flow/activemq-all/pom.xml (original)
+++ activemq/sandbox/activemq-flow/activemq-all/pom.xml Wed Jun 10 14:46:44 2009
@@ -61,6 +61,10 @@
       <groupId>org.apache.activemq</groupId>
       <artifactId>activemq-stomp</artifactId>
     </dependency>
+    <dependency>
+      <groupId>org.apache.activemq</groupId>
+      <artifactId>activemq-spring</artifactId>
+    </dependency>
 
     <!-- Testing Dependencies -->    
     <dependency>
@@ -71,6 +75,11 @@
       <scope>test</scope>
     </dependency>
     <dependency>
+      <groupId>org.springframework</groupId>
+      <artifactId>spring-jms</artifactId>
+      <scope>test</scope>
+    </dependency>    
+    <dependency>
       <groupId>junit</groupId>
       <artifactId>junit</artifactId>
       <scope>test</scope>

Added: activemq/sandbox/activemq-flow/activemq-spring/pom.xml
URL: http://svn.apache.org/viewvc/activemq/sandbox/activemq-flow/activemq-spring/pom.xml?rev=783377&view=auto
==============================================================================
--- activemq/sandbox/activemq-flow/activemq-spring/pom.xml (added)
+++ activemq/sandbox/activemq-flow/activemq-spring/pom.xml Wed Jun 10 14:46:44 2009
@@ -0,0 +1,61 @@
+<?xml version="1.0" encoding="UTF-8"?>
+  <!--
+    Licensed to the Apache Software Foundation (ASF) under one or more
+    contributor license agreements. See the NOTICE file distributed with
+    this work for additional information regarding copyright ownership.
+    The ASF licenses this file to You under the Apache License, Version
+    2.0 (the "License"); you may not use this file except in compliance
+    with the License. You may obtain a copy of the License at
+    http://www.apache.org/licenses/LICENSE-2.0 Unless required by
+    applicable law or agreed to in writing, software distributed under
+    the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES
+    OR CONDITIONS OF ANY KIND, either express or implied. See the
+    License for the specific language governing permissions and
+    limitations under the License.
+  -->
+<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>
+
+  <parent>
+    <groupId>org.apache.activemq</groupId>
+    <artifactId>activemq-parent</artifactId>
+    <version>6.0-SNAPSHOT</version>
+  </parent>
+
+  <groupId>org.apache.activemq</groupId>
+  <artifactId>activemq-spring</artifactId>
+  <packaging>jar</packaging>
+  <version>6.0-SNAPSHOT</version>
+
+  <name>ActiveMQ :: Spring</name>
+
+  <dependencies>
+
+    <dependency>
+      <groupId>org.apache.activemq</groupId>
+      <artifactId>activemq-broker</artifactId>
+    </dependency>
+
+    <dependency>
+      <groupId>org.springframework</groupId>
+      <artifactId>spring-context</artifactId>
+    </dependency>
+
+
+    <!-- Testing Dependencies -->
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>log4j</groupId>
+      <artifactId>log4j</artifactId>
+      <scope>test</scope>
+    </dependency>
+  
+  </dependencies>
+
+</project>

Modified: activemq/sandbox/activemq-flow/pom.xml
URL: http://svn.apache.org/viewvc/activemq/sandbox/activemq-flow/pom.xml?rev=783377&r1=783376&r2=783377&view=diff
==============================================================================
--- activemq/sandbox/activemq-flow/pom.xml (original)
+++ activemq/sandbox/activemq-flow/pom.xml Wed Jun 10 14:46:44 2009
@@ -127,6 +127,7 @@
     <module>activemq-selector</module>
     <module>activemq-queue</module>
     <module>activemq-jmx</module>
+    <module>activemq-spring</module>
   </modules>
 
 <!--
@@ -252,6 +253,11 @@
         <artifactId>activemq-jmx</artifactId>
         <version>${activemq-version}</version>
       </dependency>
+      <dependency>
+        <groupId>org.apache.activemq</groupId>
+        <artifactId>activemq-spring</artifactId>
+        <version>${activemq-version}</version>
+      </dependency>
       
       <dependency>
         <groupId>org.apache.activemq.protobuf</groupId>