blob: d07c1f4cc0e13ae183b6170e2c91e826227e96ea [file] [log] [blame]
alshabibfaa1e362015-04-02 15:01:54 -07001<?xml version="1.0" encoding="UTF-8"?>
2<!--
Brian O'Connor5ab426f2016-04-09 01:19:45 -07003 ~ Copyright 2015-present Open Networking Laboratory
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 Milkey72bcefe2016-12-02 16:22:53 -080025 <version>1.9.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>
35 <module>ciena</module>
36 <module>fujitsu</module>
Andreas Papazois1dff77c2016-02-16 16:27:33 +020037 <module>cisco</module>
Andrea Campanella238d96e2016-01-20 11:52:02 -080038 <module>netconf</module>
39 <module>ovsdb</module>
40 <module>utilities</module>
Marc De Leenheerc662d322016-02-18 16:05:10 -080041 <module>lumentum</module>
Brian O'Connordedf24c2016-10-24 00:41:40 -070042 <!-- TODO ONOS-5554 excluding from the build -->
43 <!--<module>bti</module>-->
Carmelo Cascone0831efb2016-05-31 14:50:19 -070044 <module>bmv2</module>
Michele Santuari9a8d16d2016-03-24 10:37:58 -070045 <module>corsa</module>
HIGUCHI Yuta07a9e562016-05-23 16:41:17 -070046 <module>optical</module>
Daniel Park531fb482016-07-02 14:21:31 +090047 <module>arista</module>
Michele Santuari21c14012016-11-14 13:31:33 +010048 <module>juniper</module>
Andrea Campanella238d96e2016-01-20 11:52:02 -080049 </modules>
50
51 <!--<properties>
Thomas Vachuska586afd82015-04-17 11:06:53 -070052 <onos.app.name>org.onosproject.drivers</onos.app.name>
Andrea Campanella238d96e2016-01-20 11:52:02 -080053 </properties>-->
Thomas Vachuska586afd82015-04-17 11:06:53 -070054
alshabibfaa1e362015-04-02 15:01:54 -070055 <dependencies>
56 <dependency>
57 <groupId>org.osgi</groupId>
58 <artifactId>org.osgi.compendium</artifactId>
59 </dependency>
60
61 <dependency>
62 <groupId>org.onosproject</groupId>
63 <artifactId>onos-api</artifactId>
64 </dependency>
65
66 <dependency>
alshabibb452fd72015-04-22 20:46:20 -070067 <groupId>org.onosproject</groupId>
Saurav Dasdecd7a62015-05-16 22:39:47 -070068 <artifactId>onos-core-serializers</artifactId>
Andrea Campanellad8d92db2016-01-14 16:24:41 -080069 <version>${project.version}</version>
70 </dependency>
samuel68a6c622015-07-21 15:14:51 +080071 <dependency>
alshabibfaa1e362015-04-02 15:01:54 -070072 <groupId>org.easymock</groupId>
73 <artifactId>easymock</artifactId>
74 <scope>test</scope>
75 </dependency>
andreaeb70a942015-10-16 21:34:46 -070076 <dependency>
alshabib77b88482015-04-07 15:47:50 -070077 <groupId>org.apache.felix</groupId>
78 <artifactId>org.apache.felix.scr.annotations</artifactId>
79 </dependency>
andreaed976a42015-10-05 14:38:25 -070080 <dependency>
81 <groupId>org.onosproject</groupId>
82 <artifactId>onos-api</artifactId>
andreaed976a42015-10-05 14:38:25 -070083 <classifier>tests</classifier>
84 <scope>test</scope>
85 </dependency>
86 <dependency>
87 <groupId>org.onosproject</groupId>
88 <artifactId>onlab-junit</artifactId>
89 <scope>test</scope>
90 </dependency>
alshabibfaa1e362015-04-02 15:01:54 -070091 </dependencies>
92
93 <build>
94 <plugins>
95 <plugin>
96 <groupId>org.apache.felix</groupId>
alshabib77b88482015-04-07 15:47:50 -070097 <artifactId>maven-scr-plugin</artifactId>
98 </plugin>
99 <plugin>
100 <groupId>org.apache.felix</groupId>
alshabibfaa1e362015-04-02 15:01:54 -0700101 <artifactId>maven-bundle-plugin</artifactId>
102 </plugin>
Thomas Vachuskadb7467a2015-04-17 11:06:53 -0700103 <plugin>
104 <groupId>org.onosproject</groupId>
105 <artifactId>onos-maven-plugin</artifactId>
106 </plugin>
alshabibfaa1e362015-04-02 15:01:54 -0700107 </plugins>
108 </build>
109</project>