blob: a13e3e1f27ad96dc13c38f1232c8bef9a2e8d128 [file] [log] [blame]
ADARA Networks1fb1eb12016-09-01 12:04:07 -07001<?xml version="1.0" encoding="UTF-8"?>
Brian O'Connora09fe5b2017-08-03 21:12:30 -07002<!-- ~ Copyright 2016-present Open Networking Foundation
ADARA Networks1fb1eb12016-09-01 12:04:07 -07003 the Apache License, Version 2.0 (the "License"); ~ you may not use this file
4 except in compliance with the License. ~ You may obtain a copy of the License
5 at ~ ~ http://www.apache.org/licenses/LICENSE-2.0 ~ ~ Unless required by
6 applicable law or agreed to in writing, software ~ distributed under the
7 License is distributed on an "AS IS" BASIS, ~ WITHOUT WARRANTIES OR CONDITIONS
8 OF ANY KIND, either express or implied. ~ See the License for the specific
9 language governing permissions and ~ limitations under the License. -->
10<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
11xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
12 <parent>
13 <groupId>org.onosproject</groupId>
14 <artifactId>onos-apps</artifactId>
Ray Milkey312d9872018-08-20 16:09:54 -070015 <version>1.15.0-SNAPSHOT</version>
ADARA Networks1fb1eb12016-09-01 12:04:07 -070016 </parent>
17 <modelVersion>4.0.0</modelVersion>
Yuta HIGUCHI78472272018-05-03 17:08:16 -070018 <artifactId>onos-apps-rabbitmq</artifactId>
ADARA Networks1fb1eb12016-09-01 12:04:07 -070019 <packaging>bundle</packaging>
20 <description>Rabbit MQ application</description>
21 <properties>
22 <rabbitmq.version>3.6.1</rabbitmq.version>
23 </properties>
24 <dependencies>
25 <dependency>
26 <groupId>com.rabbitmq</groupId>
27 <artifactId>amqp-client</artifactId>
28 <version>${rabbitmq.version}</version>
29 </dependency>
30 <dependency>
31 <groupId>org.onosproject</groupId>
ADARA Networks1fb1eb12016-09-01 12:04:07 -070032 <artifactId>onlab-misc</artifactId>
33 </dependency>
34 <dependency>
35 <groupId>org.onosproject</groupId>
36 <artifactId>onos-incubator-api</artifactId>
37 </dependency>
38 <dependency>
39 <groupId>com.google.guava</groupId>
40 <artifactId>guava</artifactId>
41 </dependency>
42 <dependency>
ADARA Networks1fb1eb12016-09-01 12:04:07 -070043 <groupId>com.google.code.gson</groupId>
44 <artifactId>gson</artifactId>
45 <version>2.6.2</version>
46 </dependency>
47 <dependency>
48 <groupId>org.osgi</groupId>
49 <artifactId>org.osgi.core</artifactId>
50 </dependency>
51 <dependency>
52 <groupId>org.onosproject</groupId>
53 <artifactId>onos-api</artifactId>
54 <classifier>tests</classifier>
55 <scope>test</scope>
56 </dependency>
57 <dependency>
58 <groupId>org.easymock</groupId>
59 <artifactId>easymock</artifactId>
60 <scope>test</scope>
61 </dependency>
62 <dependency>
63 <groupId>org.osgi</groupId>
64 <artifactId>org.osgi.compendium</artifactId>
65 </dependency>
66 <dependency>
67 <groupId>org.onosproject</groupId>
68 <artifactId>onlab-junit</artifactId>
69 <scope>test</scope>
70 </dependency>
ADARA Networks1fb1eb12016-09-01 12:04:07 -070071 </dependencies>
72</project>