blob: 7011cbcfd38c42ea88679279db6e93a362908cdc [file] [log] [blame]
Andrea Campanella241896c2017-05-10 13:11:04 -07001<?xml version="1.0" encoding="UTF-8"?>
2<!--
Brian O'Connora09fe5b2017-08-03 21:12:30 -07003 ~ Copyright 2017-present Open Networking Foundation
Andrea Campanella241896c2017-05-10 13:11:04 -07004 ~
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 Milkeybca90492018-04-13 12:47:31 -070024 <version>1.14.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>
Yuta HIGUCHI09ae3682017-08-14 18:56:54 -070030
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>
Yuta HIGUCHI165afdd2018-03-06 20:18:13 -080035 <artifactId>onos-protocols-grpc-api</artifactId>
Andrea Campanella378e21a2017-06-07 12:09:59 +020036 <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>
Carmelo Casconeb1936bd2017-12-12 14:42:27 -080042 <version>1.3.1</version>
Yuta HIGUCHI28c3daa2017-07-13 13:38:04 -070043 </dependency>
44
45 <dependency>
46 <groupId>org.onosproject</groupId>
Yuta HIGUCHI165afdd2018-03-06 20:18:13 -080047 <artifactId>onos-protocols-p4runtime-api</artifactId>
Yuta HIGUCHI28c3daa2017-07-13 13:38:04 -070048 <version>${project.version}</version>
49 </dependency>
50
Yuta HIGUCHI165afdd2018-03-06 20:18:13 -080051 <dependency>
52 <groupId>org.onosproject</groupId>
53 <artifactId>onos-protocols-p4runtime-model</artifactId>
54 <version>${project.version}</version>
55 </dependency>
56
57 <dependency>
58 <groupId>org.onosproject</groupId>
59 <artifactId>onos-drivers-p4runtime</artifactId>
60 <version>${project.version}</version>
61 </dependency>
62
63 <dependency>
64 <groupId>org.onosproject</groupId>
65 <artifactId>onos-pipelines-basic</artifactId>
66 <version>${project.version}</version>
67 </dependency>
Yuta HIGUCHI28c3daa2017-07-13 13:38:04 -070068
Andrea Campanella378e21a2017-06-07 12:09:59 +020069 </dependencies>
Andrea Campanella241896c2017-05-10 13:11:04 -070070
71 <properties>
72 <onos.app.name>org.onosproject.drivers.bmv2</onos.app.name>
Thomas Vachuskaa10137c2018-04-03 16:45:59 -070073 <onos.app.origin>ONOS Community</onos.app.origin>
Andrea Campanella241896c2017-05-10 13:11:04 -070074 <onos.app.title>BMv2 Device Drivers</onos.app.title>
75 <onos.app.category>Drivers</onos.app.category>
76 <onos.app.url>http://onosproject.org</onos.app.url>
77 <onos.app.requires>
78 org.onosproject.generaldeviceprovider
79 </onos.app.requires>
80 </properties>
81
Yuta HIGUCHI09ae3682017-08-14 18:56:54 -070082 <build>
83 <plugins>
84 <plugin>
85 <groupId>org.apache.maven.plugins</groupId>
86 <artifactId>maven-resources-plugin</artifactId>
87 <!-- Workaround for P4 test code using symlinks in git -->
88 <!-- last version which copies symlink target -->
89 <version>2.7</version>
90 </plugin>
91 </plugins>
92 </build>
93
Andrea Campanella241896c2017-05-10 13:11:04 -070094</project>