adding rabbit mq
Project: http://git-wip-us.apache.org/repos/asf/airavata/repo Commit: http://git-wip-us.apache.org/repos/asf/airavata/commit/288fb82a Tree: http://git-wip-us.apache.org/repos/asf/airavata/tree/288fb82a Diff: http://git-wip-us.apache.org/repos/asf/airavata/diff/288fb82a Branch: refs/heads/master Commit: 288fb82aaa3752daffa9af840e5f05f5398a1f9b Parents: e257af7 Author: chathuriw <[email protected]> Authored: Wed Sep 17 11:30:59 2014 -0400 Committer: Chathuri Wimalasena <[email protected]> Committed: Wed Sep 17 11:30:59 2014 -0400 ---------------------------------------------------------------------- modules/messaging/core/pom.xml | 31 +++++++++++++++++++------------ 1 file changed, 19 insertions(+), 12 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/airavata/blob/288fb82a/modules/messaging/core/pom.xml ---------------------------------------------------------------------- diff --git a/modules/messaging/core/pom.xml b/modules/messaging/core/pom.xml index 4bb4995..4b36cda 100644 --- a/modules/messaging/core/pom.xml +++ b/modules/messaging/core/pom.xml @@ -8,7 +8,8 @@ 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"> +<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"> <parent> <groupId>org.apache.airavata</groupId> @@ -38,25 +39,31 @@ <artifactId>junit</artifactId> <scope>test</scope> </dependency> - <dependency> - <groupId>org.slf4j</groupId> - <artifactId>jcl-over-slf4j</artifactId> - <scope>test</scope> - </dependency> - <dependency> - <groupId>org.slf4j</groupId> - <artifactId>slf4j-log4j12</artifactId> - <scope>test</scope> - </dependency> + <dependency> + <groupId>org.slf4j</groupId> + <artifactId>jcl-over-slf4j</artifactId> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.slf4j</groupId> + <artifactId>slf4j-log4j12</artifactId> + <scope>test</scope> + </dependency> <dependency> <groupId>org.apache.airavata</groupId> <artifactId>airavata-data-models</artifactId> <version>${project.version}</version> </dependency> - <dependency> + <dependency> <groupId>org.apache.airavata</groupId> <artifactId>airavata-client-configuration</artifactId> <scope>test</scope> </dependency> + <dependency> + <groupId>com.rabbitmq</groupId> + <artifactId>amqp-client</artifactId> + <version>3.3.5</version> + </dependency> </dependencies> + </project>
