blob: 7fcf6e9f8bd4768b7c90e4bb08eee453abbc4f93 [file] [log] [blame]
Charles Chand6d581a2015-11-18 16:51:08 -08001<?xml version="1.0" encoding="UTF-8"?>
2<!--
Brian O'Connor5ab426f2016-04-09 01:19:45 -07003 ~ Copyright 2015-present Open Networking Laboratory
Charles Chand6d581a2015-11-18 16:51:08 -08004 ~
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>
Ray Milkey54a78512017-02-13 11:13:52 -080023 <version>1.10.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>
Jian Lifd46e1d2016-03-08 09:18:53 -080037 <onos.app.title>Network Config Host Provider</onos.app.title>
Charles Chand6d581a2015-11-18 16:51:08 -080038 <onos.app.origin>ON.Lab</onos.app.origin>
Jian Lifd46e1d2016-03-08 09:18:53 -080039 <onos.app.category>Provider</onos.app.category>
Jian Lic35415d2016-01-14 17:22:31 -080040 <onos.app.url>http://onosproject.org</onos.app.url>
Charles Chana449aae2016-01-22 14:22:12 -080041 <onos.app.readme>Host provider that uses network config service to discover hosts.</onos.app.readme>
Charles Chand6d581a2015-11-18 16:51:08 -080042 </properties>
43
44 <dependencies>
45 <dependency>
46 <groupId>org.onosproject</groupId>
47 <artifactId>onos-api</artifactId>
Charles Chand6d581a2015-11-18 16:51:08 -080048 </dependency>
49
50 <dependency>
51 <groupId>org.onosproject</groupId>
52 <artifactId>onlab-osgi</artifactId>
Charles Chand6d581a2015-11-18 16:51:08 -080053 </dependency>
54
55 <dependency>
56 <groupId>junit</groupId>
57 <artifactId>junit</artifactId>
Charles Chand6d581a2015-11-18 16:51:08 -080058 <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>