blob: 2c25234b018d386f8133384e962535de252fe26d [file] [log] [blame]
Francesco Lucrezia472976a2016-05-26 21:24:01 +02001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 ~ Copyright 2016-present Open Networking Laboratory
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 xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
18 <modelVersion>4.0.0</modelVersion>
19 <parent>
20 <groupId>org.onosproject</groupId>
21 <artifactId>onos-icona</artifactId>
22 <version>1.7.0-SNAPSHOT</version>
23 <relativePath>../pom.xml</relativePath>
24 </parent>
25
26 <artifactId>onos-app-icona-domain-provider</artifactId>
27 <packaging>bundle</packaging>
28
29
30 <description>Inter Cluster Onos Network App/provider</description>
31
32 <properties>
33 <onos.app.name>org.onosproject.icona.domainprovider</onos.app.name>
34 </properties>
35
36
37 <dependencies>
38 <dependency>
39 <groupId>org.osgi</groupId>
40 <artifactId>org.osgi.compendium</artifactId>
41 </dependency>
42
43 <dependency>
44 <groupId>org.onosproject</groupId>
45 <artifactId>onos-api</artifactId>
46 <version>${onos.version}</version>
47 </dependency>
48
49 <dependency>
50 <groupId>org.onosproject</groupId>
51 <artifactId>onos-core-serializers</artifactId>
52 <version>${onos.version}</version>
53 </dependency>
54
55 <dependency>
56 <groupId>org.onosproject</groupId>
57 <artifactId>onlab-osgi</artifactId>
58 <version>${onos.version}</version>
59 </dependency>
60
61 <dependency>
62 <groupId>org.onosproject</groupId>
63 <artifactId>onlab-misc</artifactId>
64 <version>${onos.version}</version>
65 </dependency>
66 <dependency>
67 <groupId>org.glassfish.jersey.core</groupId>
68 <artifactId>jersey-client</artifactId>
69 </dependency>
70
71 <dependency>
72 <groupId>org.onosproject</groupId>
73 <artifactId>onos-app-icona-domain-manager</artifactId>
74 <version>${project.version}</version>
75 </dependency>
76
77 </dependencies>
78</project>