You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by dk...@apache.org on 2013/08/28 22:30:22 UTC

svn commit: r1518370 - in /cxf/branches/2.7.x-fixes/distribution/src/main/release/samples: java_first_jms/pom.xml jms_pubsub/pom.xml jms_queue/pom.xml jms_spec_demo/pom.xml jms_spring_config/pom.xml

Author: dkulp
Date: Wed Aug 28 20:30:22 2013
New Revision: 1518370

URL: http://svn.apache.org/r1518370
Log:
Merged revisions 1518351 via  git cherry-pick from
https://svn.apache.org/repos/asf/cxf/trunk

........
  r1518351 | dkulp | 2013-08-28 16:17:42 -0400 (Wed, 28 Aug 2013) | 2 lines

  Fix sample poms

........

Modified:
    cxf/branches/2.7.x-fixes/distribution/src/main/release/samples/java_first_jms/pom.xml
    cxf/branches/2.7.x-fixes/distribution/src/main/release/samples/jms_pubsub/pom.xml
    cxf/branches/2.7.x-fixes/distribution/src/main/release/samples/jms_queue/pom.xml
    cxf/branches/2.7.x-fixes/distribution/src/main/release/samples/jms_spec_demo/pom.xml
    cxf/branches/2.7.x-fixes/distribution/src/main/release/samples/jms_spring_config/pom.xml

Modified: cxf/branches/2.7.x-fixes/distribution/src/main/release/samples/java_first_jms/pom.xml
URL: http://svn.apache.org/viewvc/cxf/branches/2.7.x-fixes/distribution/src/main/release/samples/java_first_jms/pom.xml?rev=1518370&r1=1518369&r2=1518370&view=diff
==============================================================================
--- cxf/branches/2.7.x-fixes/distribution/src/main/release/samples/java_first_jms/pom.xml (original)
+++ cxf/branches/2.7.x-fixes/distribution/src/main/release/samples/java_first_jms/pom.xml Wed Aug 28 20:30:22 2013
@@ -112,7 +112,11 @@
     <dependencies>
         <dependency>
             <groupId>org.apache.activemq</groupId>
-            <artifactId>activemq-core</artifactId>
+            <artifactId>activemq-broker</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.activemq</groupId>
+            <artifactId>activemq-kahadb-store</artifactId>
         </dependency>
         <dependency>
             <groupId>org.apache.cxf</groupId>

Modified: cxf/branches/2.7.x-fixes/distribution/src/main/release/samples/jms_pubsub/pom.xml
URL: http://svn.apache.org/viewvc/cxf/branches/2.7.x-fixes/distribution/src/main/release/samples/jms_pubsub/pom.xml?rev=1518370&r1=1518369&r2=1518370&view=diff
==============================================================================
--- cxf/branches/2.7.x-fixes/distribution/src/main/release/samples/jms_pubsub/pom.xml (original)
+++ cxf/branches/2.7.x-fixes/distribution/src/main/release/samples/jms_pubsub/pom.xml Wed Aug 28 20:30:22 2013
@@ -157,7 +157,11 @@
         </dependency>
         <dependency>
             <groupId>org.apache.activemq</groupId>
-            <artifactId>activemq-core</artifactId>
+            <artifactId>activemq-broker</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.activemq</groupId>
+            <artifactId>activemq-kahadb-store</artifactId>
         </dependency>
     </dependencies>
 </project>

Modified: cxf/branches/2.7.x-fixes/distribution/src/main/release/samples/jms_queue/pom.xml
URL: http://svn.apache.org/viewvc/cxf/branches/2.7.x-fixes/distribution/src/main/release/samples/jms_queue/pom.xml?rev=1518370&r1=1518369&r2=1518370&view=diff
==============================================================================
--- cxf/branches/2.7.x-fixes/distribution/src/main/release/samples/jms_queue/pom.xml (original)
+++ cxf/branches/2.7.x-fixes/distribution/src/main/release/samples/jms_queue/pom.xml Wed Aug 28 20:30:22 2013
@@ -158,7 +158,11 @@
         </dependency>
         <dependency>
             <groupId>org.apache.activemq</groupId>
-            <artifactId>activemq-core</artifactId>
+            <artifactId>activemq-broker</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.activemq</groupId>
+            <artifactId>activemq-kahadb-store</artifactId>
         </dependency>
     </dependencies>
 </project>

Modified: cxf/branches/2.7.x-fixes/distribution/src/main/release/samples/jms_spec_demo/pom.xml
URL: http://svn.apache.org/viewvc/cxf/branches/2.7.x-fixes/distribution/src/main/release/samples/jms_spec_demo/pom.xml?rev=1518370&r1=1518369&r2=1518370&view=diff
==============================================================================
--- cxf/branches/2.7.x-fixes/distribution/src/main/release/samples/jms_spec_demo/pom.xml (original)
+++ cxf/branches/2.7.x-fixes/distribution/src/main/release/samples/jms_spec_demo/pom.xml Wed Aug 28 20:30:22 2013
@@ -157,7 +157,11 @@
         </dependency>
         <dependency>
             <groupId>org.apache.activemq</groupId>
-            <artifactId>activemq-core</artifactId>
+            <artifactId>activemq-broker</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.activemq</groupId>
+            <artifactId>activemq-kahadb-store</artifactId>
         </dependency>
     </dependencies>
 </project>

Modified: cxf/branches/2.7.x-fixes/distribution/src/main/release/samples/jms_spring_config/pom.xml
URL: http://svn.apache.org/viewvc/cxf/branches/2.7.x-fixes/distribution/src/main/release/samples/jms_spring_config/pom.xml?rev=1518370&r1=1518369&r2=1518370&view=diff
==============================================================================
--- cxf/branches/2.7.x-fixes/distribution/src/main/release/samples/jms_spring_config/pom.xml (original)
+++ cxf/branches/2.7.x-fixes/distribution/src/main/release/samples/jms_spring_config/pom.xml Wed Aug 28 20:30:22 2013
@@ -201,7 +201,11 @@
         </dependency>
         <dependency>
             <groupId>org.apache.activemq</groupId>
-            <artifactId>activemq-core</artifactId>
+            <artifactId>activemq-broker</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.activemq</groupId>
+            <artifactId>activemq-kahadb-store</artifactId>
         </dependency>
         <dependency>
             <groupId>org.springframework</groupId>