blob: ba40b5d531a9f6470e6e36c273714f0d9789020a [file] [log] [blame]
Andrea Campanella241896c2017-05-10 13:11:04 -07001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 ~ Copyright 2017-present 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
18<project xmlns="http://maven.apache.org/POM/4.0.0"
19 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
20 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
21 <parent>
22 <artifactId>onos-drivers-general</artifactId>
23 <groupId>org.onosproject</groupId>
Ray Milkeyf14cc6d2017-06-28 09:07:17 -070024 <version>1.11.0-SNAPSHOT</version>
Andrea Campanella241896c2017-05-10 13:11:04 -070025 </parent>
26 <modelVersion>4.0.0</modelVersion>
27
28 <artifactId>onos-drivers-bmv2</artifactId>
29 <packaging>bundle</packaging>
Andrea Campanella378e21a2017-06-07 12:09:59 +020030
Andrea Campanella241896c2017-05-10 13:11:04 -070031 <description>BMv2 device drivers</description>
Andrea Campanella378e21a2017-06-07 12:09:59 +020032 <dependencies>
33 <dependency>
34 <groupId>org.onosproject</groupId>
35 <artifactId>onos-grpc-protocol-api</artifactId>
36 <version>${project.version}</version>
37 </dependency>
Yuta HIGUCHI28c3daa2017-07-13 13:38:04 -070038
39 <dependency>
40 <groupId>io.grpc</groupId>
41 <artifactId>grpc-netty</artifactId>
42 <version>1.3.0</version>
43 </dependency>
44
45 <dependency>
46 <groupId>org.onosproject</groupId>
47 <artifactId>onos-incubator-bmv2-model</artifactId>
48 <version>${project.version}</version>
49 </dependency>
50
51 <!-- protocols/p4runtime/api missing -->
52
Andrea Campanella378e21a2017-06-07 12:09:59 +020053 </dependencies>
Andrea Campanella241896c2017-05-10 13:11:04 -070054
55 <properties>
56 <onos.app.name>org.onosproject.drivers.bmv2</onos.app.name>
57 <onos.app.origin>ON.Lab</onos.app.origin>
58 <onos.app.title>BMv2 Device Drivers</onos.app.title>
59 <onos.app.category>Drivers</onos.app.category>
60 <onos.app.url>http://onosproject.org</onos.app.url>
61 <onos.app.requires>
62 org.onosproject.generaldeviceprovider
63 </onos.app.requires>
64 </properties>
65
66</project>