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/03 21:39:31 UTC

svn commit: r781521 - in /activemq/sandbox/activemq-flow: activemq-all/ activemq-all/src/test/java/org/ activemq-all/src/test/java/org/apache/ activemq-all/src/test/java/org/apache/activemq/ activemq-all/src/test/java/org/apache/activemq/broker/ active...

Author: chirino
Date: Wed Jun  3 19:39:30 2009
New Revision: 781521

URL: http://svn.apache.org/viewvc?rev=781521&view=rev
Log:
Moved the mock broker tests to the all package since it an end to end test which depends on many modules. 

Added:
    activemq/sandbox/activemq-flow/activemq-all/src/test/java/org/
    activemq/sandbox/activemq-flow/activemq-all/src/test/java/org/apache/
    activemq/sandbox/activemq-flow/activemq-all/src/test/java/org/apache/activemq/
    activemq/sandbox/activemq-flow/activemq-all/src/test/java/org/apache/activemq/broker/
    activemq/sandbox/activemq-flow/activemq-all/src/test/java/org/apache/activemq/broker/openwire/
      - copied from r781514, activemq/sandbox/activemq-flow/activemq-openwire/src/test/java/org/apache/activemq/broker/openwire/
    activemq/sandbox/activemq-flow/activemq-bio/src/main/resources/META-INF/
    activemq/sandbox/activemq-flow/activemq-bio/src/main/resources/META-INF/services/
    activemq/sandbox/activemq-flow/activemq-bio/src/main/resources/META-INF/services/org/
    activemq/sandbox/activemq-flow/activemq-bio/src/main/resources/META-INF/services/org/apache/
    activemq/sandbox/activemq-flow/activemq-bio/src/main/resources/META-INF/services/org/apache/activemq/
    activemq/sandbox/activemq-flow/activemq-bio/src/main/resources/META-INF/services/org/apache/activemq/transport/
    activemq/sandbox/activemq-flow/activemq-bio/src/main/resources/META-INF/services/org/apache/activemq/transport/ssl
    activemq/sandbox/activemq-flow/activemq-bio/src/main/resources/META-INF/services/org/apache/activemq/transport/tcp
Removed:
    activemq/sandbox/activemq-flow/activemq-openwire/src/test/java/org/apache/activemq/broker/openwire/
Modified:
    activemq/sandbox/activemq-flow/activemq-all/pom.xml
    activemq/sandbox/activemq-flow/activemq-openwire/pom.xml
    activemq/sandbox/activemq-flow/webgen/src/architecture.page   (props changed)
    activemq/sandbox/activemq-flow/webgen/src/index.page   (props changed)
    activemq/sandbox/activemq-flow/webgen/src/module-organization.page   (props changed)
    activemq/sandbox/activemq-flow/webgen/src/privacy-policy.page   (props changed)
    activemq/sandbox/activemq-flow/webgen/src/todo.page   (props changed)

Modified: activemq/sandbox/activemq-flow/activemq-all/pom.xml
URL: http://svn.apache.org/viewvc/activemq/sandbox/activemq-flow/activemq-all/pom.xml?rev=781521&r1=781520&r2=781521&view=diff
==============================================================================
--- activemq/sandbox/activemq-flow/activemq-all/pom.xml (original)
+++ activemq/sandbox/activemq-flow/activemq-all/pom.xml Wed Jun  3 19:39:30 2009
@@ -35,23 +35,30 @@
   
     <dependency>
       <groupId>org.apache.activemq</groupId>
-      <artifactId>activemq-util</artifactId>
+      <artifactId>activemq-broker</artifactId>
     </dependency>
     <dependency>
       <groupId>org.apache.activemq</groupId>
-      <artifactId>activemq-dispatcher</artifactId>
+      <artifactId>activemq-bio</artifactId>
     </dependency>
     <dependency>
       <groupId>org.apache.activemq</groupId>
-      <artifactId>activemq-flow</artifactId>
+      <artifactId>activemq-kaha</artifactId>
     </dependency>
     <dependency>
       <groupId>org.apache.activemq</groupId>
-      <artifactId>activemq-transport</artifactId>
+      <artifactId>activemq-openwire</artifactId>
     </dependency>
 
     <!-- Testing Dependencies -->    
     <dependency>
+      <groupId>org.apache.activemq</groupId>
+      <artifactId>activemq-broker</artifactId>
+      <version>${activemq-version}</version>
+      <type>test-jar</type>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
       <groupId>junit</groupId>
       <artifactId>junit</artifactId>
       <scope>test</scope>

Added: activemq/sandbox/activemq-flow/activemq-bio/src/main/resources/META-INF/services/org/apache/activemq/transport/ssl
URL: http://svn.apache.org/viewvc/activemq/sandbox/activemq-flow/activemq-bio/src/main/resources/META-INF/services/org/apache/activemq/transport/ssl?rev=781521&view=auto
==============================================================================
--- activemq/sandbox/activemq-flow/activemq-bio/src/main/resources/META-INF/services/org/apache/activemq/transport/ssl (added)
+++ activemq/sandbox/activemq-flow/activemq-bio/src/main/resources/META-INF/services/org/apache/activemq/transport/ssl Wed Jun  3 19:39:30 2009
@@ -0,0 +1,17 @@
+## ---------------------------------------------------------------------------
+## 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.
+## ---------------------------------------------------------------------------
+class=org.apache.activemq.transport.tcp.SslTransportFactory

Added: activemq/sandbox/activemq-flow/activemq-bio/src/main/resources/META-INF/services/org/apache/activemq/transport/tcp
URL: http://svn.apache.org/viewvc/activemq/sandbox/activemq-flow/activemq-bio/src/main/resources/META-INF/services/org/apache/activemq/transport/tcp?rev=781521&view=auto
==============================================================================
--- activemq/sandbox/activemq-flow/activemq-bio/src/main/resources/META-INF/services/org/apache/activemq/transport/tcp (added)
+++ activemq/sandbox/activemq-flow/activemq-bio/src/main/resources/META-INF/services/org/apache/activemq/transport/tcp Wed Jun  3 19:39:30 2009
@@ -0,0 +1,17 @@
+## ---------------------------------------------------------------------------
+## 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.
+## ---------------------------------------------------------------------------
+class=org.apache.activemq.transport.tcp.TcpTransportFactory

Modified: activemq/sandbox/activemq-flow/activemq-openwire/pom.xml
URL: http://svn.apache.org/viewvc/activemq/sandbox/activemq-flow/activemq-openwire/pom.xml?rev=781521&r1=781520&r2=781521&view=diff
==============================================================================
--- activemq/sandbox/activemq-flow/activemq-openwire/pom.xml (original)
+++ activemq/sandbox/activemq-flow/activemq-openwire/pom.xml Wed Jun  3 19:39:30 2009
@@ -52,13 +52,6 @@
 
     <!-- Testing Dependencies -->
     <dependency>
-      <groupId>org.apache.activemq</groupId>
-      <artifactId>activemq-broker</artifactId>
-      <version>${activemq-version}</version>
-      <type>test-jar</type>
-      <scope>test</scope>
-    </dependency>
-    <dependency>
       <groupId>junit</groupId>
       <artifactId>junit</artifactId>
       <scope>test</scope>

Propchange: activemq/sandbox/activemq-flow/webgen/src/architecture.page
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: activemq/sandbox/activemq-flow/webgen/src/index.page
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: activemq/sandbox/activemq-flow/webgen/src/module-organization.page
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: activemq/sandbox/activemq-flow/webgen/src/privacy-policy.page
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: activemq/sandbox/activemq-flow/webgen/src/todo.page
------------------------------------------------------------------------------
    svn:eol-style = native