blob: 1dcb0dd87ebc6b79cdfb11c67550d189b566d9b6 [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>
ONOS Jenkins User4e5f2d62018-08-13 23:16:37 +000025 <version>1.14.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>
Andrea Campanella545edb42018-03-20 16:37:29 -070042 <groupId>org.onosproject</groupId>
43 <artifactId>onlab-osgi</artifactId>
44 <classifier>tests</classifier>
45 <scope>test</scope>
46 </dependency>
47 <dependency>
48 <groupId>org.onosproject</groupId>
49 <artifactId>onos-api</artifactId>
50 <classifier>tests</classifier>
51 <scope>test</scope>
52 </dependency>
53 <dependency>
54 <groupId>org.onosproject</groupId>
55 <artifactId>onos-core-common</artifactId>
56 <classifier>tests</classifier>
57 <scope>test</scope>
58 </dependency>
59
60 <dependency>
61 <groupId>org.osgi</groupId>
62 <artifactId>org.osgi.core</artifactId>
63 <scope>test</scope>
64 </dependency>
65
66 </dependencies>
67</project>