blob: 24e3d36d691f64c3ec4580de947f3da7f20ca5cc [file] [log] [blame]
alshabibfaa1e362015-04-02 15:01:54 -07001<?xml version="1.0" encoding="UTF-8"?>
2<!--
Brian O'Connora09fe5b2017-08-03 21:12:30 -07003 ~ Copyright 2015-present Open Networking Foundation
alshabibfaa1e362015-04-02 15:01:54 -07004 ~
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
8 ~
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.
16 -->
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
alshabibfaa1e362015-04-02 15:01:54 -070022 <parent>
23 <groupId>org.onosproject</groupId>
24 <artifactId>onos</artifactId>
Ray Milkeybca90492018-04-13 12:47:31 -070025 <version>1.14.0-SNAPSHOT</version>
alshabibfaa1e362015-04-02 15:01:54 -070026 </parent>
27
Andrea Campanella238d96e2016-01-20 11:52:02 -080028 <artifactId>onos-drivers-general</artifactId>
29 <packaging>pom</packaging>
alshabibfaa1e362015-04-02 15:01:54 -070030
Andrea Campanella238d96e2016-01-20 11:52:02 -080031 <description>Builtin device drivers general module</description>
alshabibfaa1e362015-04-02 15:01:54 -070032
Andrea Campanella238d96e2016-01-20 11:52:02 -080033 <modules>
34 <module>default</module>
Yuta HIGUCHIdf54c302018-04-09 14:22:51 -070035 <module>ciena/waveserver</module>
David Bainbridge7526c452018-04-20 14:14:37 -070036 <module>ciena/c5162</module>
37 <module>ciena/c5170</module>
Jeff Groom34c28ce2018-04-26 19:42:18 -060038 <module>ciena/waveserverai</module>
Andrea Campanella238d96e2016-01-20 11:52:02 -080039 <module>fujitsu</module>
Andreas Papazois1dff77c2016-02-16 16:27:33 +020040 <module>cisco</module>
Andrea Campanella238d96e2016-01-20 11:52:02 -080041 <module>netconf</module>
Georgios Katsikas83600982017-05-28 20:41:45 +020042 <module>server</module>
Andrea Campanella238d96e2016-01-20 11:52:02 -080043 <module>ovsdb</module>
44 <module>utilities</module>
Marc De Leenheerc662d322016-02-18 16:05:10 -080045 <module>lumentum</module>
Michele Santuari9a8d16d2016-03-24 10:37:58 -070046 <module>corsa</module>
HIGUCHI Yuta07a9e562016-05-23 16:41:17 -070047 <module>optical</module>
Daniel Park531fb482016-07-02 14:21:31 +090048 <module>arista</module>
Michele Santuari21c14012016-11-14 13:31:33 +010049 <module>juniper</module>
Jian Lib1ca1ea2017-01-23 17:43:17 -080050 <module>lisp</module>
Shashikanth VH8b1a5ef2016-12-26 14:37:43 +053051 <module>flowspec</module>
MaoLu819fde22017-04-20 17:17:49 -070052 <module>oplink</module>
Yuta HIGUCHI165afdd2018-03-06 20:18:13 -080053 <module>p4runtime</module>
54 <module>bmv2</module>
Jovana Vuleta1de61262017-06-14 11:10:29 +020055 <module>hp</module>
Sean Condonfa9c77d2018-02-28 09:03:00 +000056 <module>microsemi/ea1000</module>
Yuta HIGUCHI165afdd2018-03-06 20:18:13 -080057 <module>gnmi</module>
Yuta HIGUCHI8c6e1942018-04-05 13:40:51 -070058 <module>odtn-driver</module>
Andrea Campanella238d96e2016-01-20 11:52:02 -080059 </modules>
60
61 <!--<properties>
Thomas Vachuska586afd82015-04-17 11:06:53 -070062 <onos.app.name>org.onosproject.drivers</onos.app.name>
Andrea Campanella238d96e2016-01-20 11:52:02 -080063 </properties>-->
Thomas Vachuska586afd82015-04-17 11:06:53 -070064
alshabibfaa1e362015-04-02 15:01:54 -070065 <dependencies>
66 <dependency>
67 <groupId>org.osgi</groupId>
68 <artifactId>org.osgi.compendium</artifactId>
69 </dependency>
70
71 <dependency>
72 <groupId>org.onosproject</groupId>
73 <artifactId>onos-api</artifactId>
74 </dependency>
75
76 <dependency>
alshabibb452fd72015-04-22 20:46:20 -070077 <groupId>org.onosproject</groupId>
Saurav Dasdecd7a62015-05-16 22:39:47 -070078 <artifactId>onos-core-serializers</artifactId>
Andrea Campanellad8d92db2016-01-14 16:24:41 -080079 <version>${project.version}</version>
80 </dependency>
samuel68a6c622015-07-21 15:14:51 +080081 <dependency>
alshabibfaa1e362015-04-02 15:01:54 -070082 <groupId>org.easymock</groupId>
83 <artifactId>easymock</artifactId>
84 <scope>test</scope>
85 </dependency>
andreaeb70a942015-10-16 21:34:46 -070086 <dependency>
alshabib77b88482015-04-07 15:47:50 -070087 <groupId>org.apache.felix</groupId>
88 <artifactId>org.apache.felix.scr.annotations</artifactId>
89 </dependency>
andreaed976a42015-10-05 14:38:25 -070090 <dependency>
91 <groupId>org.onosproject</groupId>
92 <artifactId>onos-api</artifactId>
andreaed976a42015-10-05 14:38:25 -070093 <classifier>tests</classifier>
94 <scope>test</scope>
95 </dependency>
96 <dependency>
97 <groupId>org.onosproject</groupId>
98 <artifactId>onlab-junit</artifactId>
99 <scope>test</scope>
100 </dependency>
alshabibfaa1e362015-04-02 15:01:54 -0700101 </dependencies>
102
103 <build>
104 <plugins>
105 <plugin>
106 <groupId>org.apache.felix</groupId>
alshabib77b88482015-04-07 15:47:50 -0700107 <artifactId>maven-scr-plugin</artifactId>
108 </plugin>
109 <plugin>
110 <groupId>org.apache.felix</groupId>
alshabibfaa1e362015-04-02 15:01:54 -0700111 <artifactId>maven-bundle-plugin</artifactId>
112 </plugin>
Thomas Vachuskadb7467a2015-04-17 11:06:53 -0700113 <plugin>
114 <groupId>org.onosproject</groupId>
115 <artifactId>onos-maven-plugin</artifactId>
116 </plugin>
alshabibfaa1e362015-04-02 15:01:54 -0700117 </plugins>
118 </build>
119</project>