David Bainbridge | 7526c45 | 2018-04-20 14:14:37 -0700 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- ~ Copyright 2018-present Open Networking Foundation ~ ~ Licensed under |
| 3 | the Apache License, Version 2.0 (the "License"); ~ you may not use this file |
| 4 | except in compliance with the License. ~ You may obtain a copy of the License |
| 5 | at ~ ~ http://www.apache.org/licenses/LICENSE-2.0 ~ ~ Unless required by |
| 6 | applicable law or agreed to in writing, software ~ distributed under the |
| 7 | License is distributed on an "AS IS" BASIS, ~ WITHOUT WARRANTIES OR CONDITIONS |
| 8 | OF ANY KIND, either express or implied. ~ See the License for the specific |
| 9 | language governing permissions and ~ limitations under the License. --> |
| 10 | |
| 11 | <project xmlns="http://maven.apache.org/POM/4.0.0" |
| 12 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 13 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 14 | <parent> |
| 15 | <artifactId>onos-drivers-general</artifactId> |
| 16 | <groupId>org.onosproject</groupId> |
ONOS Jenkins User | 98c91a0 | 2018-09-04 22:07:36 +0000 | [diff] [blame] | 17 | <version>1.14.1-SNAPSHOT</version> |
David Bainbridge | 7526c45 | 2018-04-20 14:14:37 -0700 | [diff] [blame] | 18 | <relativePath>../../pom.xml</relativePath> |
| 19 | </parent> |
| 20 | <modelVersion>4.0.0</modelVersion> |
| 21 | |
| 22 | <artifactId>onos-drivers-ciena-c5162</artifactId> |
| 23 | <packaging>bundle</packaging> |
| 24 | |
| 25 | <description>Ciena 5162 device drivers</description> |
| 26 | |
| 27 | <properties> |
| 28 | <onos.app.name>org.onosproject.drivers.ciena.c5162</onos.app.name> |
| 29 | <onos.app.origin>ONOS Community</onos.app.origin> |
| 30 | <onos.app.title>Ciena 5162 Device Drivers</onos.app.title> |
| 31 | <onos.app.category>Drivers</onos.app.category> |
| 32 | <onos.app.url>http://onosproject.org</onos.app.url> |
| 33 | <onos.app.requires> |
| 34 | org.onosproject.netconf |
| 35 | </onos.app.requires> |
| 36 | <jinjava.version>2.4.0</jinjava.version> |
| 37 | <jsoup.version>1.8.1</jsoup.version> |
| 38 | <juel.version>2.2.7</juel.version> |
| 39 | </properties> |
| 40 | |
| 41 | <dependencies> |
| 42 | <dependency> |
| 43 | <groupId>org.onosproject</groupId> |
| 44 | <artifactId>onos-drivers-utilities</artifactId> |
| 45 | <version>${project.version}</version> |
| 46 | </dependency> |
| 47 | <dependency> |
| 48 | <groupId>org.onosproject</groupId> |
| 49 | <artifactId>onos-protocols-netconf-api</artifactId> |
| 50 | <version>${project.version}</version> |
| 51 | </dependency> |
| 52 | <dependency> |
| 53 | <groupId>org.onosproject</groupId> |
| 54 | <artifactId>onos-drivers-netconf</artifactId> |
| 55 | <version>${project.version}</version> |
| 56 | </dependency> |
David K. Bainbridge | 1a10d62 | 2018-05-07 12:32:27 -0700 | [diff] [blame] | 57 | <dependency> |
| 58 | <groupId>org.onosproject</groupId> |
| 59 | <artifactId>onos-drivers-netconf</artifactId> |
| 60 | <version>${project.version}</version> |
| 61 | <scope>test</scope> |
| 62 | <classifier>tests</classifier> |
| 63 | </dependency> |
David Bainbridge | 7526c45 | 2018-04-20 14:14:37 -0700 | [diff] [blame] | 64 | </dependencies> |
| 65 | |
| 66 | </project> |