alshabib | faa1e36 | 2015-04-02 15:01:54 -0700 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
Brian O'Connor | 5ab426f | 2016-04-09 01:19:45 -0700 | [diff] [blame] | 3 | ~ Copyright 2015-present Open Networking Laboratory |
alshabib | faa1e36 | 2015-04-02 15:01:54 -0700 | [diff] [blame] | 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 | |
alshabib | faa1e36 | 2015-04-02 15:01:54 -0700 | [diff] [blame] | 22 | <parent> |
| 23 | <groupId>org.onosproject</groupId> |
| 24 | <artifactId>onos</artifactId> |
Ray Milkey | 54a7851 | 2017-02-13 11:13:52 -0800 | [diff] [blame] | 25 | <version>1.10.0-SNAPSHOT</version> |
alshabib | faa1e36 | 2015-04-02 15:01:54 -0700 | [diff] [blame] | 26 | </parent> |
| 27 | |
Andrea Campanella | 238d96e | 2016-01-20 11:52:02 -0800 | [diff] [blame] | 28 | <artifactId>onos-drivers-general</artifactId> |
| 29 | <packaging>pom</packaging> |
alshabib | faa1e36 | 2015-04-02 15:01:54 -0700 | [diff] [blame] | 30 | |
Andrea Campanella | 238d96e | 2016-01-20 11:52:02 -0800 | [diff] [blame] | 31 | <description>Builtin device drivers general module</description> |
alshabib | faa1e36 | 2015-04-02 15:01:54 -0700 | [diff] [blame] | 32 | |
Andrea Campanella | 238d96e | 2016-01-20 11:52:02 -0800 | [diff] [blame] | 33 | <modules> |
| 34 | <module>default</module> |
| 35 | <module>ciena</module> |
| 36 | <module>fujitsu</module> |
Andreas Papazois | 1dff77c | 2016-02-16 16:27:33 +0200 | [diff] [blame] | 37 | <module>cisco</module> |
Andrea Campanella | 238d96e | 2016-01-20 11:52:02 -0800 | [diff] [blame] | 38 | <module>netconf</module> |
| 39 | <module>ovsdb</module> |
| 40 | <module>utilities</module> |
Marc De Leenheer | c662d32 | 2016-02-18 16:05:10 -0800 | [diff] [blame] | 41 | <module>lumentum</module> |
Brian O'Connor | dedf24c | 2016-10-24 00:41:40 -0700 | [diff] [blame] | 42 | <!-- TODO ONOS-5554 excluding from the build --> |
| 43 | <!--<module>bti</module>--> |
Carmelo Cascone | 0831efb | 2016-05-31 14:50:19 -0700 | [diff] [blame] | 44 | <module>bmv2</module> |
Michele Santuari | 9a8d16d | 2016-03-24 10:37:58 -0700 | [diff] [blame] | 45 | <module>corsa</module> |
HIGUCHI Yuta | 07a9e56 | 2016-05-23 16:41:17 -0700 | [diff] [blame] | 46 | <module>optical</module> |
Daniel Park | 531fb48 | 2016-07-02 14:21:31 +0900 | [diff] [blame] | 47 | <module>arista</module> |
Michele Santuari | 21c1401 | 2016-11-14 13:31:33 +0100 | [diff] [blame] | 48 | <module>juniper</module> |
Jian Li | b1ca1ea | 2017-01-23 17:43:17 -0800 | [diff] [blame] | 49 | <module>lisp</module> |
Andrea Campanella | 238d96e | 2016-01-20 11:52:02 -0800 | [diff] [blame] | 50 | </modules> |
| 51 | |
| 52 | <!--<properties> |
Thomas Vachuska | 586afd8 | 2015-04-17 11:06:53 -0700 | [diff] [blame] | 53 | <onos.app.name>org.onosproject.drivers</onos.app.name> |
Andrea Campanella | 238d96e | 2016-01-20 11:52:02 -0800 | [diff] [blame] | 54 | </properties>--> |
Thomas Vachuska | 586afd8 | 2015-04-17 11:06:53 -0700 | [diff] [blame] | 55 | |
alshabib | faa1e36 | 2015-04-02 15:01:54 -0700 | [diff] [blame] | 56 | <dependencies> |
| 57 | <dependency> |
| 58 | <groupId>org.osgi</groupId> |
| 59 | <artifactId>org.osgi.compendium</artifactId> |
| 60 | </dependency> |
| 61 | |
| 62 | <dependency> |
| 63 | <groupId>org.onosproject</groupId> |
| 64 | <artifactId>onos-api</artifactId> |
| 65 | </dependency> |
| 66 | |
| 67 | <dependency> |
alshabib | b452fd7 | 2015-04-22 20:46:20 -0700 | [diff] [blame] | 68 | <groupId>org.onosproject</groupId> |
Saurav Das | decd7a6 | 2015-05-16 22:39:47 -0700 | [diff] [blame] | 69 | <artifactId>onos-core-serializers</artifactId> |
Andrea Campanella | d8d92db | 2016-01-14 16:24:41 -0800 | [diff] [blame] | 70 | <version>${project.version}</version> |
| 71 | </dependency> |
samuel | 68a6c62 | 2015-07-21 15:14:51 +0800 | [diff] [blame] | 72 | <dependency> |
alshabib | faa1e36 | 2015-04-02 15:01:54 -0700 | [diff] [blame] | 73 | <groupId>org.easymock</groupId> |
| 74 | <artifactId>easymock</artifactId> |
| 75 | <scope>test</scope> |
| 76 | </dependency> |
andrea | eb70a94 | 2015-10-16 21:34:46 -0700 | [diff] [blame] | 77 | <dependency> |
alshabib | 77b8848 | 2015-04-07 15:47:50 -0700 | [diff] [blame] | 78 | <groupId>org.apache.felix</groupId> |
| 79 | <artifactId>org.apache.felix.scr.annotations</artifactId> |
| 80 | </dependency> |
andrea | ed976a4 | 2015-10-05 14:38:25 -0700 | [diff] [blame] | 81 | <dependency> |
| 82 | <groupId>org.onosproject</groupId> |
| 83 | <artifactId>onos-api</artifactId> |
andrea | ed976a4 | 2015-10-05 14:38:25 -0700 | [diff] [blame] | 84 | <classifier>tests</classifier> |
| 85 | <scope>test</scope> |
| 86 | </dependency> |
| 87 | <dependency> |
| 88 | <groupId>org.onosproject</groupId> |
| 89 | <artifactId>onlab-junit</artifactId> |
| 90 | <scope>test</scope> |
| 91 | </dependency> |
alshabib | faa1e36 | 2015-04-02 15:01:54 -0700 | [diff] [blame] | 92 | </dependencies> |
| 93 | |
| 94 | <build> |
| 95 | <plugins> |
| 96 | <plugin> |
| 97 | <groupId>org.apache.felix</groupId> |
alshabib | 77b8848 | 2015-04-07 15:47:50 -0700 | [diff] [blame] | 98 | <artifactId>maven-scr-plugin</artifactId> |
| 99 | </plugin> |
| 100 | <plugin> |
| 101 | <groupId>org.apache.felix</groupId> |
alshabib | faa1e36 | 2015-04-02 15:01:54 -0700 | [diff] [blame] | 102 | <artifactId>maven-bundle-plugin</artifactId> |
| 103 | </plugin> |
Thomas Vachuska | db7467a | 2015-04-17 11:06:53 -0700 | [diff] [blame] | 104 | <plugin> |
| 105 | <groupId>org.onosproject</groupId> |
| 106 | <artifactId>onos-maven-plugin</artifactId> |
| 107 | </plugin> |
alshabib | faa1e36 | 2015-04-02 15:01:54 -0700 | [diff] [blame] | 108 | </plugins> |
| 109 | </build> |
| 110 | </project> |