You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by ta...@apache.org on 2013/01/10 17:43:22 UTC

svn commit: r1431492 - in /activemq/trunk/activemq-camel: ./ src/main/java/org/apache/activemq/camel/component/ src/main/java/org/apache/camel/ src/test/java/org/apache/activemq/camel/component/

Author: tabish
Date: Thu Jan 10 16:43:21 2013
New Revision: 1431492

URL: http://svn.apache.org/viewvc?rev=1431492&view=rev
Log:
https://issues.apache.org/jira/browse/AMQ-4163

Removed the journal component as its dependent on the now deprecated activemq-amq-store code.  

Removed:
    activemq/trunk/activemq-camel/src/main/java/org/apache/activemq/camel/component/JournalComponent.java
    activemq/trunk/activemq-camel/src/main/java/org/apache/activemq/camel/component/JournalEndpoint.java
    activemq/trunk/activemq-camel/src/main/java/org/apache/camel/
    activemq/trunk/activemq-camel/src/test/java/org/apache/activemq/camel/component/JournalConfigureTest.java
    activemq/trunk/activemq-camel/src/test/java/org/apache/activemq/camel/component/JournalRoutePerformance.java
    activemq/trunk/activemq-camel/src/test/java/org/apache/activemq/camel/component/JournalRouteTest.java
Modified:
    activemq/trunk/activemq-camel/pom.xml

Modified: activemq/trunk/activemq-camel/pom.xml
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-camel/pom.xml?rev=1431492&r1=1431491&r2=1431492&view=diff
==============================================================================
--- activemq/trunk/activemq-camel/pom.xml (original)
+++ activemq/trunk/activemq-camel/pom.xml Thu Jan 10 16:43:21 2013
@@ -6,9 +6,9 @@
   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.
@@ -70,10 +70,6 @@
       <groupId>${project.groupId}</groupId>
       <artifactId>activemq-spring</artifactId>
     </dependency>
-    <dependency>
-      <groupId>${project.groupId}</groupId>
-      <artifactId>activemq-amq-store</artifactId>
-    </dependency>
 
     <!-- to use AMQ with Camel efficient we would need to use pooling -->
     <dependency>
@@ -113,7 +109,7 @@
       <groupId>org.springframework</groupId>
       <artifactId>spring-test</artifactId>
       <scope>test</scope>
-    </dependency>    
+    </dependency>
     <dependency>
       <groupId>junit</groupId>
       <artifactId>junit</artifactId>
@@ -194,7 +190,6 @@
       <optional>true</optional>
       <scope>test</scope>
     </dependency>
-
   </dependencies>
 
   <build>
@@ -207,15 +202,14 @@
           <childDelegation>false</childDelegation>
           <useFile>true</useFile>
           <argLine>-Xmx512M</argLine>
-
-           <systemProperties>
+          <systemProperties>
             <property>
               <name>org.apache.activemq.default.directory.prefix</name>
               <value>target/</value>
             </property>
           </systemProperties>
           <excludes>
-              <exclude>**/JmsJdbcXALoadTest.java</exclude><!-- used only for manual xa performance testing -->
+            <exclude>**/JmsJdbcXALoadTest.java</exclude><!-- used only for manual xa performance testing -->
           </excludes>
         </configuration>
       </plugin>