blob: 8ad970a560482862bf5f4f3be47be18145e801ee [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>
Ray Milkey312d9872018-08-20 16:09:54 -070025 <version>1.15.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-impl</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>
Andrea Campanella545edb42018-03-20 16:37:29 -070042 <groupId>org.onosproject</groupId>
Yuta HIGUCHId6ab1002018-03-25 19:31:17 -070043 <artifactId>onos-apps-mcast-api</artifactId>
Andrea Campanella545edb42018-03-20 16:37:29 -070044 <version>${project.version}</version>
45 </dependency>
46 <dependency>
47 <groupId>org.onosproject</groupId>
48 <artifactId>onlab-osgi</artifactId>
49 <classifier>tests</classifier>
50 <scope>test</scope>
51 </dependency>
52 <dependency>
53 <groupId>org.onosproject</groupId>
54 <artifactId>onos-api</artifactId>
55 <classifier>tests</classifier>
56 <scope>test</scope>
57 </dependency>
58 <dependency>
59 <groupId>org.onosproject</groupId>
60 <artifactId>onos-core-common</artifactId>
61 <classifier>tests</classifier>
62 <scope>test</scope>
63 </dependency>
64
65 <dependency>
66 <groupId>org.osgi</groupId>
67 <artifactId>org.osgi.core</artifactId>
68 <scope>test</scope>
69 </dependency>
70
71 </dependencies>
72</project>