alshabib | faa1e36 | 2015-04-02 15:01:54 -0700 | [diff] [blame] | 1 | <?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 | |
| 22 | |
| 23 | <parent> |
| 24 | <groupId>org.onosproject</groupId> |
| 25 | <artifactId>onos</artifactId> |
Brian O'Connor | f967ad6 | 2015-09-18 15:19:54 -0700 | [diff] [blame] | 26 | <version>1.4.0-SNAPSHOT</version> |
alshabib | faa1e36 | 2015-04-02 15:01:54 -0700 | [diff] [blame] | 27 | <relativePath>../pom.xml</relativePath> |
| 28 | </parent> |
| 29 | |
| 30 | <artifactId>onos-drivers</artifactId> |
| 31 | <packaging>bundle</packaging> |
| 32 | |
Thomas Vachuska | db7467a | 2015-04-17 11:06:53 -0700 | [diff] [blame] | 33 | <description>Builtin device drivers</description> |
alshabib | faa1e36 | 2015-04-02 15:01:54 -0700 | [diff] [blame] | 34 | |
Thomas Vachuska | 586afd8 | 2015-04-17 11:06:53 -0700 | [diff] [blame] | 35 | <properties> |
| 36 | <onos.app.name>org.onosproject.drivers</onos.app.name> |
| 37 | </properties> |
| 38 | |
alshabib | faa1e36 | 2015-04-02 15:01:54 -0700 | [diff] [blame] | 39 | <dependencies> |
| 40 | <dependency> |
| 41 | <groupId>org.osgi</groupId> |
| 42 | <artifactId>org.osgi.compendium</artifactId> |
| 43 | </dependency> |
| 44 | |
| 45 | <dependency> |
| 46 | <groupId>org.onosproject</groupId> |
| 47 | <artifactId>onos-api</artifactId> |
| 48 | </dependency> |
| 49 | |
| 50 | <dependency> |
alshabib | b452fd7 | 2015-04-22 20:46:20 -0700 | [diff] [blame] | 51 | <groupId>org.onosproject</groupId> |
| 52 | <artifactId>onos-of-api</artifactId> |
| 53 | </dependency> |
| 54 | |
Saurav Das | decd7a6 | 2015-05-16 22:39:47 -0700 | [diff] [blame] | 55 | <dependency> |
| 56 | <groupId>org.onosproject</groupId> |
| 57 | <artifactId>onos-core-serializers</artifactId> |
andrea | ed976a4 | 2015-10-05 14:38:25 -0700 | [diff] [blame] | 58 | <version>${project.version}</version> |
| 59 | </dependency> |
samuel | 68a6c62 | 2015-07-21 15:14:51 +0800 | [diff] [blame] | 60 | <dependency> |
| 61 | <groupId>org.onosproject</groupId> |
| 62 | <artifactId>onos-ovsdb-api</artifactId> |
| 63 | <version>${project.version}</version> |
| 64 | </dependency> |
alshabib | b452fd7 | 2015-04-22 20:46:20 -0700 | [diff] [blame] | 65 | <dependency> |
alshabib | faa1e36 | 2015-04-02 15:01:54 -0700 | [diff] [blame] | 66 | <groupId>org.easymock</groupId> |
| 67 | <artifactId>easymock</artifactId> |
| 68 | <scope>test</scope> |
| 69 | </dependency> |
andrea | eb70a94 | 2015-10-16 21:34:46 -0700 | [diff] [blame] | 70 | <dependency> |
| 71 | <groupId>org.onosproject</groupId> |
| 72 | <artifactId>onos-netconf-api</artifactId> |
| 73 | <version>${project.version}</version> |
| 74 | </dependency> |
alshabib | faa1e36 | 2015-04-02 15:01:54 -0700 | [diff] [blame] | 75 | |
alshabib | 77b8848 | 2015-04-07 15:47:50 -0700 | [diff] [blame] | 76 | <dependency> |
| 77 | <groupId>org.apache.felix</groupId> |
| 78 | <artifactId>org.apache.felix.scr.annotations</artifactId> |
| 79 | </dependency> |
andrea | ed976a4 | 2015-10-05 14:38:25 -0700 | [diff] [blame] | 80 | <dependency> |
| 81 | <groupId>org.onosproject</groupId> |
| 82 | <artifactId>onos-api</artifactId> |
| 83 | <version>${project.version}</version> |
| 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> |
| 92 | <dependency> |
| 93 | <groupId>org.onosproject</groupId> |
| 94 | <artifactId>onos-ovsdb-api</artifactId> |
| 95 | <version>${project.version}</version> |
| 96 | <classifier>tests</classifier> |
| 97 | <scope>test</scope> |
| 98 | </dependency> |
alshabib | faa1e36 | 2015-04-02 15:01:54 -0700 | [diff] [blame] | 99 | </dependencies> |
| 100 | |
| 101 | <build> |
| 102 | <plugins> |
| 103 | <plugin> |
| 104 | <groupId>org.apache.felix</groupId> |
alshabib | 77b8848 | 2015-04-07 15:47:50 -0700 | [diff] [blame] | 105 | <artifactId>maven-scr-plugin</artifactId> |
| 106 | </plugin> |
| 107 | <plugin> |
| 108 | <groupId>org.apache.felix</groupId> |
alshabib | faa1e36 | 2015-04-02 15:01:54 -0700 | [diff] [blame] | 109 | <artifactId>maven-bundle-plugin</artifactId> |
| 110 | </plugin> |
Thomas Vachuska | db7467a | 2015-04-17 11:06:53 -0700 | [diff] [blame] | 111 | <plugin> |
| 112 | <groupId>org.onosproject</groupId> |
| 113 | <artifactId>onos-maven-plugin</artifactId> |
| 114 | </plugin> |
alshabib | faa1e36 | 2015-04-02 15:01:54 -0700 | [diff] [blame] | 115 | </plugins> |
| 116 | </build> |
| 117 | </project> |