Author: chirino
Date: Wed Jun 20 23:14:14 2012
New Revision: 1352368
URL: http://svn.apache.org/viewvc?rev=1352368&view=rev
Log:
Added readme to explain how to enabled the swiftmq test cases.
Added:
activemq/activemq-apollo/trunk/apollo-amqp/readme.md
Modified:
activemq/activemq-apollo/trunk/apollo-amqp/pom.xml
Modified: activemq/activemq-apollo/trunk/apollo-amqp/pom.xml
URL:
http://svn.apache.org/viewvc/activemq/activemq-apollo/trunk/apollo-amqp/pom.xml?rev=1352368&r1=1352367&r2=1352368&view=diff
==============================================================================
--- activemq/activemq-apollo/trunk/apollo-amqp/pom.xml (original)
+++ activemq/activemq-apollo/trunk/apollo-amqp/pom.xml Wed Jun 20 23:14:14 2012
@@ -226,7 +226,7 @@
<executions>
<execution>
<id>add-test-source</id>
- <phase>generate-test-sources</phase>
+ <phase>generate-sources</phase>
<goals>
<goal>add-test-source</goal>
</goals>
Added: activemq/activemq-apollo/trunk/apollo-amqp/readme.md
URL:
http://svn.apache.org/viewvc/activemq/activemq-apollo/trunk/apollo-amqp/readme.md?rev=1352368&view=auto
==============================================================================
--- activemq/activemq-apollo/trunk/apollo-amqp/readme.md (added)
+++ activemq/activemq-apollo/trunk/apollo-amqp/readme.md Wed Jun 20 23:14:14
2012
@@ -0,0 +1,31 @@
+## Overview
+
+This module implements the AMQP protocol.
+
+## Enabling the SwiftMQ Client Interop Tests
+
+You can use the SwiftMQ AMQP client library to test AMQP 1.0
+interoperability with Apollo if you have the clients installed
+on your local machine. To let the Maven build know that the SwiftMQ
+clients are available on your machine you need to update
+your `~/.m2/settings.xml` file by adding:
+
+ <activeProfiles>
+ ...
+ <activeProfile>swiftmq-client</activeProfile>
+ ..
+ </activeProfiles>
+
+ <profiles>
+ ...
+ <profile>
+ <id>swiftmq-client</id>
+ <properties>
+
<swiftmq-client-home>/path/to/swiftmq_9_2_0_client</swiftmq-client-home>
+ </properties>
+ </profile>
+ ...
+ </profiles>
+
+Make sure you set the `swiftmq-client-home` to where you installed that
clients on your
+system.
\ No newline at end of file