blob: 1800a9de4a21fffa9844a0d2f08e0f90cd5ae5ed [file] [log] [blame]
David Bainbridge7526c452018-04-20 14:14:37 -07001<?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>
Ray Milkey312d9872018-08-20 16:09:54 -070017 <version>1.15.0-SNAPSHOT</version>
David Bainbridge7526c452018-04-20 14:14:37 -070018 <relativePath>../../pom.xml</relativePath>
19 </parent>
20 <modelVersion>4.0.0</modelVersion>
21
22 <artifactId>onos-drivers-ciena-c5170</artifactId>
23 <packaging>bundle</packaging>
24
25 <description>Ciena 5170 device drivers</description>
26
27 <properties>
28 <onos.app.name>org.onosproject.drivers.ciena.c5170</onos.app.name>
29 <onos.app.origin>ONOS Community</onos.app.origin>
30 <onos.app.title>Ciena 5170 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. Bainbridge96cf8542018-05-08 10:46:35 -070057 <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 Bainbridge7526c452018-04-20 14:14:37 -070064 </dependencies>
65
66</project>