blob: 4990541cd24f4d0fbb61a180338c8ac8733ab4b7 [file] [log] [blame]
Charles Chand6d581a2015-11-18 16:51:08 -08001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 ~ Copyright 2014 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"
18 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
19 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
20 <parent>
21 <artifactId>onos-providers</artifactId>
22 <groupId>org.onosproject</groupId>
Brian O'Connor880dc20d2015-12-16 22:53:14 -080023 <version>1.5.0-SNAPSHOT</version>
Charles Chand6d581a2015-11-18 16:51:08 -080024 </parent>
25 <modelVersion>4.0.0</modelVersion>
26
27 <artifactId>onos-netcfg-host-provider</artifactId>
28 <packaging>bundle</packaging>
29
30 <description>
31 Host provider that uses network config service to discover hosts.
32 </description>
33 <url>http://onosproject.org</url>
34
35 <properties>
Charles Chand6d581a2015-11-18 16:51:08 -080036 <onos.app.name>org.onosproject.netcfghostprovider</onos.app.name>
37 <onos.app.origin>ON.Lab</onos.app.origin>
Jian Lic35415d2016-01-14 17:22:31 -080038 <onos.app.category>default</onos.app.category>
39 <onos.app.url>http://onosproject.org</onos.app.url>
Charles Chana449aae2016-01-22 14:22:12 -080040 <onos.app.readme>Host provider that uses network config service to discover hosts.</onos.app.readme>
Charles Chand6d581a2015-11-18 16:51:08 -080041 </properties>
42
43 <dependencies>
44 <dependency>
45 <groupId>org.onosproject</groupId>
46 <artifactId>onos-api</artifactId>
Charles Chand6d581a2015-11-18 16:51:08 -080047 </dependency>
48
49 <dependency>
50 <groupId>org.onosproject</groupId>
51 <artifactId>onlab-osgi</artifactId>
Charles Chand6d581a2015-11-18 16:51:08 -080052 </dependency>
53
54 <dependency>
55 <groupId>junit</groupId>
56 <artifactId>junit</artifactId>
57 <version>4.11</version>
58 <scope>test</scope>
59 </dependency>
60
61 <dependency>
Charles Chand6d581a2015-11-18 16:51:08 -080062 <groupId>org.easymock</groupId>
63 <artifactId>easymock</artifactId>
64 <scope>test</scope>
65 </dependency>
66 </dependencies>
67
68</project>