blob: 1fb64a763a624a6e8613c8fc634f33f648ad1669 [file] [log] [blame]
alshabibfaa1e362015-04-02 15:01:54 -07001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 ~ Copyright 2014 Open Networking Laboratory
4 ~
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>
Brian O'Connor955c3162016-03-10 15:27:19 -080025 <version>1.6.0-SNAPSHOT</version>
alshabibfaa1e362015-04-02 15:01:54 -070026 <relativePath>../pom.xml</relativePath>
27 </parent>
28
Andrea Campanella238d96e2016-01-20 11:52:02 -080029 <artifactId>onos-drivers-general</artifactId>
30 <packaging>pom</packaging>
alshabibfaa1e362015-04-02 15:01:54 -070031
Andrea Campanella238d96e2016-01-20 11:52:02 -080032 <description>Builtin device drivers general module</description>
alshabibfaa1e362015-04-02 15:01:54 -070033
Andrea Campanella238d96e2016-01-20 11:52:02 -080034 <modules>
35 <module>default</module>
36 <module>ciena</module>
37 <module>fujitsu</module>
Andreas Papazois1dff77c2016-02-16 16:27:33 +020038 <module>cisco</module>
Andrea Campanella238d96e2016-01-20 11:52:02 -080039 <module>netconf</module>
40 <module>ovsdb</module>
41 <module>utilities</module>
Marc De Leenheerc662d322016-02-18 16:05:10 -080042 <module>lumentum</module>
Andrea Campanellac2d754b2016-03-29 17:51:07 -070043 <module>bti</module>
Andrea Campanella238d96e2016-01-20 11:52:02 -080044 </modules>
45
46 <!--<properties>
Thomas Vachuska586afd82015-04-17 11:06:53 -070047 <onos.app.name>org.onosproject.drivers</onos.app.name>
Andrea Campanella238d96e2016-01-20 11:52:02 -080048 </properties>-->
Thomas Vachuska586afd82015-04-17 11:06:53 -070049
alshabibfaa1e362015-04-02 15:01:54 -070050 <dependencies>
51 <dependency>
52 <groupId>org.osgi</groupId>
53 <artifactId>org.osgi.compendium</artifactId>
54 </dependency>
55
56 <dependency>
57 <groupId>org.onosproject</groupId>
58 <artifactId>onos-api</artifactId>
59 </dependency>
60
61 <dependency>
alshabibb452fd72015-04-22 20:46:20 -070062 <groupId>org.onosproject</groupId>
Saurav Dasdecd7a62015-05-16 22:39:47 -070063 <artifactId>onos-core-serializers</artifactId>
Andrea Campanellad8d92db2016-01-14 16:24:41 -080064 <version>${project.version}</version>
65 </dependency>
samuel68a6c622015-07-21 15:14:51 +080066 <dependency>
alshabibfaa1e362015-04-02 15:01:54 -070067 <groupId>org.easymock</groupId>
68 <artifactId>easymock</artifactId>
69 <scope>test</scope>
70 </dependency>
andreaeb70a942015-10-16 21:34:46 -070071 <dependency>
alshabib77b88482015-04-07 15:47:50 -070072 <groupId>org.apache.felix</groupId>
73 <artifactId>org.apache.felix.scr.annotations</artifactId>
74 </dependency>
andreaed976a42015-10-05 14:38:25 -070075 <dependency>
76 <groupId>org.onosproject</groupId>
77 <artifactId>onos-api</artifactId>
78 <version>${project.version}</version>
79 <classifier>tests</classifier>
80 <scope>test</scope>
81 </dependency>
82 <dependency>
83 <groupId>org.onosproject</groupId>
84 <artifactId>onlab-junit</artifactId>
85 <scope>test</scope>
86 </dependency>
alshabibfaa1e362015-04-02 15:01:54 -070087 </dependencies>
88
89 <build>
90 <plugins>
91 <plugin>
92 <groupId>org.apache.felix</groupId>
alshabib77b88482015-04-07 15:47:50 -070093 <artifactId>maven-scr-plugin</artifactId>
94 </plugin>
95 <plugin>
96 <groupId>org.apache.felix</groupId>
alshabibfaa1e362015-04-02 15:01:54 -070097 <artifactId>maven-bundle-plugin</artifactId>
98 </plugin>
Thomas Vachuskadb7467a2015-04-17 11:06:53 -070099 <plugin>
100 <groupId>org.onosproject</groupId>
101 <artifactId>onos-maven-plugin</artifactId>
102 </plugin>
alshabibfaa1e362015-04-02 15:01:54 -0700103 </plugins>
104 </build>
105</project>