blob: dadd6bf1b665e942cf95d674f2cfb3236e76cc0e [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>
38 </properties>
39
40 <dependencies>
41 <dependency>
42 <groupId>org.onosproject</groupId>
43 <artifactId>onos-api</artifactId>
Charles Chand6d581a2015-11-18 16:51:08 -080044 </dependency>
45
46 <dependency>
47 <groupId>org.onosproject</groupId>
48 <artifactId>onlab-osgi</artifactId>
Charles Chand6d581a2015-11-18 16:51:08 -080049 </dependency>
50
51 <dependency>
52 <groupId>junit</groupId>
53 <artifactId>junit</artifactId>
54 <version>4.11</version>
55 <scope>test</scope>
56 </dependency>
57
58 <dependency>
Charles Chand6d581a2015-11-18 16:51:08 -080059 <groupId>org.easymock</groupId>
60 <artifactId>easymock</artifactId>
61 <scope>test</scope>
62 </dependency>
63 </dependencies>
64
65</project>