blob: dfcc76eb3ce2cf44fddac1b15c25c85744756297 [file] [log] [blame]
alshabib7911a052014-10-16 17:49:37 -07001<?xml version="1.0" encoding="UTF-8"?>
Thomas Vachuska781d18b2014-10-27 10:31:25 -07002<!--
Brian O'Connor5ab426f2016-04-09 01:19:45 -07003 ~ Copyright 2014-present Open Networking Laboratory
Thomas Vachuska781d18b2014-10-27 10:31:25 -07004 ~
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07005 ~ 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
Thomas Vachuska781d18b2014-10-27 10:31:25 -07008 ~
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07009 ~ 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.
Thomas Vachuska781d18b2014-10-27 10:31:25 -070016 -->
alshabib7911a052014-10-16 17:49:37 -070017<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
23 <parent>
Brian O'Connorabafb502014-12-02 22:26:20 -080024 <groupId>org.onosproject</groupId>
alshabib7911a052014-10-16 17:49:37 -070025 <artifactId>onos-providers</artifactId>
Ray Milkey72bcefe2016-12-02 16:22:53 -080026 <version>1.9.0-SNAPSHOT</version>
alshabib7911a052014-10-16 17:49:37 -070027 </parent>
28
29 <artifactId>onos-lldp-provider</artifactId>
30 <packaging>bundle</packaging>
31
Charles Chane889e2d2015-11-17 12:01:02 -080032 <properties>
33 <onos.app.name>org.onosproject.lldpprovider</onos.app.name>
Simon Huntafae2f72016-03-04 21:18:23 -080034 <onos.app.title>LLDP Link Provider</onos.app.title>
Jian Lic35415d2016-01-14 17:22:31 -080035 <onos.app.origin>ON.Lab</onos.app.origin>
Jian Lifd46e1d2016-03-08 09:18:53 -080036 <onos.app.category>Provider</onos.app.category>
Jian Lic35415d2016-01-14 17:22:31 -080037 <onos.app.url>http://onosproject.org</onos.app.url>
38 <onos.app.readme>ONOS LLDP link provider.</onos.app.readme>
Charles Chane889e2d2015-11-17 12:01:02 -080039 </properties>
40
41 <description>ONOS LLDP link provider</description>
alshabib7911a052014-10-16 17:49:37 -070042
Yuta HIGUCHIf1f2ac02014-11-26 14:02:22 -080043 <dependencies>
44 <dependency>
Yuta HIGUCHI41289382014-12-19 17:47:12 -080045 <groupId>org.osgi</groupId>
46 <artifactId>org.osgi.compendium</artifactId>
47 </dependency>
48
49 <dependency>
Brian O'Connorabafb502014-12-02 22:26:20 -080050 <groupId>org.onosproject</groupId>
Ray Milkey957390e2016-02-09 10:02:46 -080051 <artifactId>onos-lldp-provider-common</artifactId>
Ray Milkey72bcefe2016-12-02 16:22:53 -080052 <version>1.9.0-SNAPSHOT</version>
Ray Milkey957390e2016-02-09 10:02:46 -080053 </dependency>
54
55 <dependency>
56 <groupId>org.onosproject</groupId>
Yuta HIGUCHIf1f2ac02014-11-26 14:02:22 -080057 <artifactId>onos-api</artifactId>
58 <classifier>tests</classifier>
59 <scope>test</scope>
60 </dependency>
Pavlin Radoslavovd36a74b2015-01-09 11:59:07 -080061
62 <dependency>
63 <groupId>org.easymock</groupId>
64 <artifactId>easymock</artifactId>
65 <scope>test</scope>
66 </dependency>
67
Naoki Shiota399a0b32015-11-15 20:36:13 -060068 <dependency>
69 <groupId>com.fasterxml.jackson.core</groupId>
70 <artifactId>jackson-databind</artifactId>
71 </dependency>
Yuta HIGUCHIf1f2ac02014-11-26 14:02:22 -080072 </dependencies>
alshabib7911a052014-10-16 17:49:37 -070073</project>