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 | <!-- |
Brian O'Connor | a09fe5b | 2017-08-03 21:12:30 -0700 | [diff] [blame] | 3 | ~ Copyright 2014-present Open Networking Foundation |
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> |
Ray Milkey | d4ac0ed | 2017-08-11 17:04:16 -0700 | [diff] [blame] | 26 | <version>1.11.0-SNAPSHOT</version> |
alshabib | 7911a05 | 2014-10-16 17:49:37 -0700 | [diff] [blame] | 27 | </parent> |
| 28 | |
| 29 | <artifactId>onos-lldp-provider</artifactId> |
| 30 | <packaging>bundle</packaging> |
| 31 | |
Charles Chan | e889e2d | 2015-11-17 12:01:02 -0800 | [diff] [blame] | 32 | <properties> |
| 33 | <onos.app.name>org.onosproject.lldpprovider</onos.app.name> |
Simon Hunt | afae2f7 | 2016-03-04 21:18:23 -0800 | [diff] [blame] | 34 | <onos.app.title>LLDP Link Provider</onos.app.title> |
Jian Li | c35415d | 2016-01-14 17:22:31 -0800 | [diff] [blame] | 35 | <onos.app.origin>ON.Lab</onos.app.origin> |
Jian Li | fd46e1d | 2016-03-08 09:18:53 -0800 | [diff] [blame] | 36 | <onos.app.category>Provider</onos.app.category> |
Jian Li | c35415d | 2016-01-14 17:22:31 -0800 | [diff] [blame] | 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> |
Yuta HIGUCHI | ea7efa4 | 2017-02-16 20:34:25 -0800 | [diff] [blame] | 50 | <groupId>org.apache.karaf.shell</groupId> |
| 51 | <artifactId>org.apache.karaf.shell.console</artifactId> |
| 52 | </dependency> |
| 53 | |
| 54 | <dependency> |
| 55 | <groupId>org.onosproject</groupId> |
| 56 | <artifactId>onos-cli</artifactId> |
| 57 | <version>${project.version}</version> |
| 58 | </dependency> |
| 59 | |
| 60 | <dependency> |
Brian O'Connor | abafb50 | 2014-12-02 22:26:20 -0800 | [diff] [blame] | 61 | <groupId>org.onosproject</groupId> |
Ray Milkey | 957390e | 2016-02-09 10:02:46 -0800 | [diff] [blame] | 62 | <artifactId>onos-lldp-provider-common</artifactId> |
Thomas Vachuska | 0439fd7 | 2017-03-24 10:05:39 -0700 | [diff] [blame] | 63 | <version>${project.version}</version> |
Ray Milkey | 957390e | 2016-02-09 10:02:46 -0800 | [diff] [blame] | 64 | </dependency> |
| 65 | |
| 66 | <dependency> |
| 67 | <groupId>org.onosproject</groupId> |
Yuta HIGUCHI | f1f2ac0 | 2014-11-26 14:02:22 -0800 | [diff] [blame] | 68 | <artifactId>onos-api</artifactId> |
| 69 | <classifier>tests</classifier> |
| 70 | <scope>test</scope> |
| 71 | </dependency> |
Pavlin Radoslavov | d36a74b | 2015-01-09 11:59:07 -0800 | [diff] [blame] | 72 | |
| 73 | <dependency> |
| 74 | <groupId>org.easymock</groupId> |
| 75 | <artifactId>easymock</artifactId> |
| 76 | <scope>test</scope> |
| 77 | </dependency> |
| 78 | |
Naoki Shiota | 399a0b3 | 2015-11-15 20:36:13 -0600 | [diff] [blame] | 79 | <dependency> |
| 80 | <groupId>com.fasterxml.jackson.core</groupId> |
| 81 | <artifactId>jackson-databind</artifactId> |
| 82 | </dependency> |
Yuta HIGUCHI | f1f2ac0 | 2014-11-26 14:02:22 -0800 | [diff] [blame] | 83 | </dependencies> |
alshabib | 7911a05 | 2014-10-16 17:49:37 -0700 | [diff] [blame] | 84 | </project> |