alshabib | 7911a05 | 2014-10-16 17:49:37 -0700 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
Thomas Vachuska | 781d18b | 2014-10-27 10:31:25 -0700 | [diff] [blame] | 2 | <!-- |
Thomas Vachuska | 4f1a60c | 2014-10-28 13:39:07 -0700 | [diff] [blame] | 3 | ~ Copyright 2014 Open Networking Laboratory |
Thomas Vachuska | 781d18b | 2014-10-27 10:31:25 -0700 | [diff] [blame] | 4 | ~ |
Thomas Vachuska | 4f1a60c | 2014-10-28 13:39:07 -0700 | [diff] [blame] | 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 |
Thomas Vachuska | 781d18b | 2014-10-27 10:31:25 -0700 | [diff] [blame] | 8 | ~ |
Thomas Vachuska | 4f1a60c | 2014-10-28 13:39:07 -0700 | [diff] [blame] | 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. |
Thomas Vachuska | 781d18b | 2014-10-27 10:31:25 -0700 | [diff] [blame] | 16 | --> |
alshabib | 7911a05 | 2014-10-16 17:49:37 -0700 | [diff] [blame] | 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 | |
| 23 | <parent> |
Brian O'Connor | abafb50 | 2014-12-02 22:26:20 -0800 | [diff] [blame] | 24 | <groupId>org.onosproject</groupId> |
alshabib | 7911a05 | 2014-10-16 17:49:37 -0700 | [diff] [blame] | 25 | <artifactId>onos-providers</artifactId> |
Thomas Vachuska | 5d8994f | 2016-03-03 17:13:26 -0800 | [diff] [blame] | 26 | <version>1.5.0-SNAPSHOT</version> |
alshabib | 7911a05 | 2014-10-16 17:49:37 -0700 | [diff] [blame] | 27 | <relativePath>../pom.xml</relativePath> |
| 28 | </parent> |
| 29 | |
| 30 | <artifactId>onos-lldp-provider</artifactId> |
| 31 | <packaging>bundle</packaging> |
| 32 | |
Charles Chan | e889e2d | 2015-11-17 12:01:02 -0800 | [diff] [blame] | 33 | <properties> |
| 34 | <onos.app.name>org.onosproject.lldpprovider</onos.app.name> |
Jian Li | c35415d | 2016-01-14 17:22:31 -0800 | [diff] [blame] | 35 | <onos.app.origin>ON.Lab</onos.app.origin> |
| 36 | <onos.app.category>default</onos.app.category> |
| 37 | <onos.app.url>http://onosproject.org</onos.app.url> |
| 38 | <onos.app.readme>ONOS LLDP link provider.</onos.app.readme> |
Charles Chan | e889e2d | 2015-11-17 12:01:02 -0800 | [diff] [blame] | 39 | </properties> |
| 40 | |
| 41 | <description>ONOS LLDP link provider</description> |
alshabib | 7911a05 | 2014-10-16 17:49:37 -0700 | [diff] [blame] | 42 | |
Yuta HIGUCHI | f1f2ac0 | 2014-11-26 14:02:22 -0800 | [diff] [blame] | 43 | <dependencies> |
| 44 | <dependency> |
Yuta HIGUCHI | 4128938 | 2014-12-19 17:47:12 -0800 | [diff] [blame] | 45 | <groupId>org.osgi</groupId> |
| 46 | <artifactId>org.osgi.compendium</artifactId> |
| 47 | </dependency> |
| 48 | |
| 49 | <dependency> |
Brian O'Connor | abafb50 | 2014-12-02 22:26:20 -0800 | [diff] [blame] | 50 | <groupId>org.onosproject</groupId> |
Ray Milkey | 957390e | 2016-02-09 10:02:46 -0800 | [diff] [blame] | 51 | <artifactId>onos-lldp-provider-common</artifactId> |
Thomas Vachuska | 5d8994f | 2016-03-03 17:13:26 -0800 | [diff] [blame] | 52 | <version>1.5.0-SNAPSHOT</version> |
Ray Milkey | 957390e | 2016-02-09 10:02:46 -0800 | [diff] [blame] | 53 | </dependency> |
| 54 | |
| 55 | <dependency> |
| 56 | <groupId>org.onosproject</groupId> |
Yuta HIGUCHI | f1f2ac0 | 2014-11-26 14:02:22 -0800 | [diff] [blame] | 57 | <artifactId>onos-api</artifactId> |
| 58 | <classifier>tests</classifier> |
| 59 | <scope>test</scope> |
| 60 | </dependency> |
Pavlin Radoslavov | d36a74b | 2015-01-09 11:59:07 -0800 | [diff] [blame] | 61 | |
| 62 | <dependency> |
| 63 | <groupId>org.easymock</groupId> |
| 64 | <artifactId>easymock</artifactId> |
| 65 | <scope>test</scope> |
| 66 | </dependency> |
| 67 | |
Naoki Shiota | 399a0b3 | 2015-11-15 20:36:13 -0600 | [diff] [blame] | 68 | <dependency> |
| 69 | <groupId>com.fasterxml.jackson.core</groupId> |
| 70 | <artifactId>jackson-databind</artifactId> |
| 71 | </dependency> |
Yuta HIGUCHI | f1f2ac0 | 2014-11-26 14:02:22 -0800 | [diff] [blame] | 72 | </dependencies> |
alshabib | 7911a05 | 2014-10-16 17:49:37 -0700 | [diff] [blame] | 73 | </project> |