ADARA Networks | 1fb1eb1 | 2016-09-01 12:04:07 -0700 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
Brian O'Connor | a09fe5b | 2017-08-03 21:12:30 -0700 | [diff] [blame] | 2 | <!-- ~ Copyright 2016-present Open Networking Foundation |
ADARA Networks | 1fb1eb1 | 2016-09-01 12:04:07 -0700 | [diff] [blame] | 3 | 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" |
| 11 | xsi: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> |
ONOS Jenkins User | 42482b2 | 2019-06-28 17:48:59 +0000 | [diff] [blame] | 15 | <version>1.13.10-SNAPSHOT</version> |
ADARA Networks | 1fb1eb1 | 2016-09-01 12:04:07 -0700 | [diff] [blame] | 16 | </parent> |
| 17 | <modelVersion>4.0.0</modelVersion> |
| 18 | <artifactId>onos-app-rabbitmq</artifactId> |
| 19 | <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 Networks | 1fb1eb1 | 2016-09-01 12:04:07 -0700 | [diff] [blame] | 32 | <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 Networks | 1fb1eb1 | 2016-09-01 12:04:07 -0700 | [diff] [blame] | 43 | <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 Networks | 1fb1eb1 | 2016-09-01 12:04:07 -0700 | [diff] [blame] | 71 | </dependencies> |
| 72 | </project> |