blob: ef7973c05a3a47b3ff2a026c4c523b4ab377b74f [file] [log] [blame]
Charles Chanff79dd92018-06-01 16:33:48 -07001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 ~ Copyright 2014-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 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/maven-v4_0_0.xsd">
20 <modelVersion>4.0.0</modelVersion>
21
22 <parent>
23 <groupId>org.onosproject</groupId>
24 <artifactId>onos-providers</artifactId>
Ray Milkey4867af22018-08-10 16:52:28 -070025 <version>1.14.0-SNAPSHOT</version>
Charles Chanff79dd92018-06-01 16:33:48 -070026 </parent>
27
Ray Milkey54ec9262018-06-07 10:57:22 -070028 <artifactId>onos-hostprobing-provider</artifactId>
Charles Chanff79dd92018-06-01 16:33:48 -070029 <packaging>bundle</packaging>
30
31 <properties>
32 <onos.app.name>org.onosproject.hostprobingprovider</onos.app.name>
33 <onos.app.title>Host Probing Provider</onos.app.title>
34 <onos.app.origin>ONF</onos.app.origin>
35 <onos.app.category>Provider</onos.app.category>
36 <onos.app.url>http://onosproject.org</onos.app.url>
37 <onos.app.readme>Provides host probing mechanism that discovers or verifies the existence of a host at specific location</onos.app.readme>
38 </properties>
39
40 <description>ONOS host probing provider</description>
41 <dependencies>
42 <dependency>
43 <groupId>org.onosproject</groupId>
44 <artifactId>onos-api</artifactId>
45 <classifier>tests</classifier>
46 <scope>test</scope>
47 </dependency>
48 <dependency>
49 <groupId>org.osgi</groupId>
50 <artifactId>org.osgi.core</artifactId>
51 </dependency>
52 <dependency>
53 <groupId>org.osgi</groupId>
54 <artifactId>org.osgi.compendium</artifactId>
55 </dependency>
56 <dependency>
57 <groupId>org.onosproject</groupId>
58 <artifactId>onlab-osgi</artifactId>
59 <classifier>tests</classifier>
60 <scope>test</scope>
61 </dependency>
62 <dependency>
63 <groupId>org.easymock</groupId>
64 <artifactId>easymock</artifactId>
65 <scope>test</scope>
66 </dependency>
67 <dependency>
68 <groupId>org.onosproject</groupId>
69 <artifactId>onos-incubator-api</artifactId>
70 </dependency>
71 </dependencies>
72</project>