alshabib | faa1e36 | 2015-04-02 15:01:54 -0700 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
Brian O'Connor | a09fe5b | 2017-08-03 21:12:30 -0700 | [diff] [blame] | 3 | ~ Copyright 2015-present Open Networking Foundation |
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> |
ONOS Jenkins User | a9bee37 | 2018-06-27 22:54:45 +0000 | [diff] [blame^] | 25 | <version>1.12.1-rc7</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>--> |
Michele Santuari | 9a8d16d | 2016-03-24 10:37:58 -0700 | [diff] [blame] | 44 | <module>corsa</module> |
HIGUCHI Yuta | 07a9e56 | 2016-05-23 16:41:17 -0700 | [diff] [blame] | 45 | <module>optical</module> |
Daniel Park | 531fb48 | 2016-07-02 14:21:31 +0900 | [diff] [blame] | 46 | <module>arista</module> |
Michele Santuari | 21c1401 | 2016-11-14 13:31:33 +0100 | [diff] [blame] | 47 | <module>juniper</module> |
Jian Li | b1ca1ea | 2017-01-23 17:43:17 -0800 | [diff] [blame] | 48 | <module>lisp</module> |
Shashikanth VH | 8b1a5ef | 2016-12-26 14:37:43 +0530 | [diff] [blame] | 49 | <module>flowspec</module> |
MaoLu | 819fde2 | 2017-04-20 17:17:49 -0700 | [diff] [blame] | 50 | <module>oplink</module> |
Yuta HIGUCHI | 28c3daa | 2017-07-13 13:38:04 -0700 | [diff] [blame] | 51 | <!-- <module>bmv2</module> --> |
Jovana Vuleta | 1de6126 | 2017-06-14 11:10:29 +0200 | [diff] [blame] | 52 | <module>hp</module> |
Yuta HIGUCHI | 2e4a6d4 | 2017-08-25 10:51:40 -0700 | [diff] [blame] | 53 | <module>microsemi</module> |
Andrea Campanella | 238d96e | 2016-01-20 11:52:02 -0800 | [diff] [blame] | 54 | </modules> |
| 55 | |
| 56 | <!--<properties> |
Thomas Vachuska | 586afd8 | 2015-04-17 11:06:53 -0700 | [diff] [blame] | 57 | <onos.app.name>org.onosproject.drivers</onos.app.name> |
Andrea Campanella | 238d96e | 2016-01-20 11:52:02 -0800 | [diff] [blame] | 58 | </properties>--> |
Thomas Vachuska | 586afd8 | 2015-04-17 11:06:53 -0700 | [diff] [blame] | 59 | |
alshabib | faa1e36 | 2015-04-02 15:01:54 -0700 | [diff] [blame] | 60 | <dependencies> |
| 61 | <dependency> |
| 62 | <groupId>org.osgi</groupId> |
| 63 | <artifactId>org.osgi.compendium</artifactId> |
| 64 | </dependency> |
| 65 | |
| 66 | <dependency> |
| 67 | <groupId>org.onosproject</groupId> |
| 68 | <artifactId>onos-api</artifactId> |
| 69 | </dependency> |
| 70 | |
| 71 | <dependency> |
alshabib | b452fd7 | 2015-04-22 20:46:20 -0700 | [diff] [blame] | 72 | <groupId>org.onosproject</groupId> |
Saurav Das | decd7a6 | 2015-05-16 22:39:47 -0700 | [diff] [blame] | 73 | <artifactId>onos-core-serializers</artifactId> |
Andrea Campanella | d8d92db | 2016-01-14 16:24:41 -0800 | [diff] [blame] | 74 | <version>${project.version}</version> |
| 75 | </dependency> |
samuel | 68a6c62 | 2015-07-21 15:14:51 +0800 | [diff] [blame] | 76 | <dependency> |
alshabib | faa1e36 | 2015-04-02 15:01:54 -0700 | [diff] [blame] | 77 | <groupId>org.easymock</groupId> |
| 78 | <artifactId>easymock</artifactId> |
| 79 | <scope>test</scope> |
| 80 | </dependency> |
andrea | eb70a94 | 2015-10-16 21:34:46 -0700 | [diff] [blame] | 81 | <dependency> |
alshabib | 77b8848 | 2015-04-07 15:47:50 -0700 | [diff] [blame] | 82 | <groupId>org.apache.felix</groupId> |
| 83 | <artifactId>org.apache.felix.scr.annotations</artifactId> |
| 84 | </dependency> |
andrea | ed976a4 | 2015-10-05 14:38:25 -0700 | [diff] [blame] | 85 | <dependency> |
| 86 | <groupId>org.onosproject</groupId> |
| 87 | <artifactId>onos-api</artifactId> |
andrea | ed976a4 | 2015-10-05 14:38:25 -0700 | [diff] [blame] | 88 | <classifier>tests</classifier> |
| 89 | <scope>test</scope> |
| 90 | </dependency> |
| 91 | <dependency> |
| 92 | <groupId>org.onosproject</groupId> |
| 93 | <artifactId>onlab-junit</artifactId> |
| 94 | <scope>test</scope> |
| 95 | </dependency> |
alshabib | faa1e36 | 2015-04-02 15:01:54 -0700 | [diff] [blame] | 96 | </dependencies> |
| 97 | |
| 98 | <build> |
| 99 | <plugins> |
| 100 | <plugin> |
| 101 | <groupId>org.apache.felix</groupId> |
alshabib | 77b8848 | 2015-04-07 15:47:50 -0700 | [diff] [blame] | 102 | <artifactId>maven-scr-plugin</artifactId> |
| 103 | </plugin> |
| 104 | <plugin> |
| 105 | <groupId>org.apache.felix</groupId> |
alshabib | faa1e36 | 2015-04-02 15:01:54 -0700 | [diff] [blame] | 106 | <artifactId>maven-bundle-plugin</artifactId> |
| 107 | </plugin> |
Thomas Vachuska | db7467a | 2015-04-17 11:06:53 -0700 | [diff] [blame] | 108 | <plugin> |
| 109 | <groupId>org.onosproject</groupId> |
| 110 | <artifactId>onos-maven-plugin</artifactId> |
| 111 | </plugin> |
alshabib | faa1e36 | 2015-04-02 15:01:54 -0700 | [diff] [blame] | 112 | </plugins> |
| 113 | </build> |
| 114 | </project> |