blob: a43d2696bf035bf1190c7fd13ceb81baa9ee7469 [file] [log] [blame]
Andrea Campanella545edb42018-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>
Yuta HIGUCHId6ab1002018-03-25 19:31:17 -070024 <artifactId>onos-apps-mcast</artifactId>
25 <version>1.13.0-SNAPSHOT</version>
Andrea Campanella545edb42018-03-20 16:37:29 -070026 </parent>
27
Yuta HIGUCHId6ab1002018-03-25 19:31:17 -070028 <artifactId>onos-apps-mcast-api</artifactId>
Andrea Campanella545edb42018-03-20 16:37:29 -070029 <packaging>bundle</packaging>
30
31 <dependencies>
32 <dependency>
33 <groupId>javax.ws.rs</groupId>
34 <artifactId>javax.ws.rs-api</artifactId>
Andrea Campanella545edb42018-03-20 16:37:29 -070035 </dependency>
36 <dependency>
37 <groupId>org.onosproject</groupId>
38 <artifactId>onos-core-serializers</artifactId>
39 <version>${project.version}</version>
40 </dependency>
41 <dependency>
42 <groupId>org.osgi</groupId>
43 <artifactId>org.osgi.compendium</artifactId>
44 </dependency>
45 <dependency>
46 <groupId>org.onosproject</groupId>
47 <artifactId>onlab-osgi</artifactId>
48 <classifier>tests</classifier>
49 <scope>test</scope>
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.onosproject</groupId>
59 <artifactId>onos-core-common</artifactId>
60 <classifier>tests</classifier>
61 <scope>test</scope>
62 </dependency>
63
64 <dependency>
65 <groupId>org.osgi</groupId>
66 <artifactId>org.osgi.core</artifactId>
67 <scope>test</scope>
68 </dependency>
69
70 </dependencies>
71</project>