blob: d3320e92345fc66e430256416d8d07ba76612363 [file] [log] [blame]
Andrea Campanella9efb9862018-03-20 16:37:29 -07001<?xml version="1.0"?>
2<!--
3 ~ Copyright 2018-present Open Networking Foundation
4 ~
5 ~ Licensed under the Apache License, Version 2.0 (the "License");
6 ~ you may not use this file except in compliance with the License.
7 ~ You may obtain a copy of the License at
8 ~
9 ~ http://www.apache.org/licenses/LICENSE-2.0
10 ~
11 ~ Unless required by applicable law or agreed to in writing, software
12 ~ distributed under the License is distributed on an "AS IS" BASIS,
13 ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 ~ See the License for the specific language governing permissions and
15 ~ limitations under the License.
16 -->
17<project
18 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
19 xmlns="http://maven.apache.org/POM/4.0.0"
20 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
21 <modelVersion>4.0.0</modelVersion>
22 <parent>
23 <groupId>org.onosproject</groupId>
24 <artifactId>onos-app-mcast</artifactId>
ONOS Jenkins User2f8de0d2019-05-31 16:21:12 +000025 <version>1.12.2-rc2</version>
Andrea Campanella9efb9862018-03-20 16:37:29 -070026 </parent>
27
28 <artifactId>onos-app-mcast-api</artifactId>
29 <packaging>bundle</packaging>
30
31 <dependencies>
32 <dependency>
33 <groupId>javax.ws.rs</groupId>
34 <artifactId>javax.ws.rs-api</artifactId>
35 <version>2.0.1</version>
36 </dependency>
37 <dependency>
38 <groupId>org.onosproject</groupId>
39 <artifactId>onos-core-serializers</artifactId>
40 <version>${project.version}</version>
41 </dependency>
42 <dependency>
Andrea Campanella9efb9862018-03-20 16:37:29 -070043 <groupId>org.onosproject</groupId>
44 <artifactId>onlab-osgi</artifactId>
45 <classifier>tests</classifier>
46 <scope>test</scope>
47 </dependency>
48 <dependency>
49 <groupId>org.onosproject</groupId>
50 <artifactId>onos-api</artifactId>
51 <classifier>tests</classifier>
52 <scope>test</scope>
53 </dependency>
54 <dependency>
55 <groupId>org.onosproject</groupId>
56 <artifactId>onos-core-common</artifactId>
57 <classifier>tests</classifier>
58 <scope>test</scope>
59 </dependency>
60
61 <dependency>
62 <groupId>org.osgi</groupId>
63 <artifactId>org.osgi.core</artifactId>
64 <scope>test</scope>
65 </dependency>
66
67 </dependencies>
68</project>