Andrea Campanella | 241896c | 2017-05-10 13:11:04 -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 2017-present Open Networking Foundation |
Andrea Campanella | 241896c | 2017-05-10 13:11:04 -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 | |
| 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 Milkey | f14cc6d | 2017-06-28 09:07:17 -0700 | [diff] [blame] | 24 | <version>1.11.0-SNAPSHOT</version> |
Andrea Campanella | 241896c | 2017-05-10 13:11:04 -0700 | [diff] [blame] | 25 | </parent> |
| 26 | <modelVersion>4.0.0</modelVersion> |
| 27 | |
| 28 | <artifactId>onos-drivers-bmv2</artifactId> |
| 29 | <packaging>bundle</packaging> |
Yuta HIGUCHI | 09ae368 | 2017-08-14 18:56:54 -0700 | [diff] [blame] | 30 | |
Andrea Campanella | 241896c | 2017-05-10 13:11:04 -0700 | [diff] [blame] | 31 | <description>BMv2 device drivers</description> |
Andrea Campanella | 378e21a | 2017-06-07 12:09:59 +0200 | [diff] [blame] | 32 | <dependencies> |
| 33 | <dependency> |
| 34 | <groupId>org.onosproject</groupId> |
| 35 | <artifactId>onos-grpc-protocol-api</artifactId> |
| 36 | <version>${project.version}</version> |
| 37 | </dependency> |
Yuta HIGUCHI | 28c3daa | 2017-07-13 13:38:04 -0700 | [diff] [blame] | 38 | |
| 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 Campanella | 378e21a | 2017-06-07 12:09:59 +0200 | [diff] [blame] | 53 | </dependencies> |
Andrea Campanella | 241896c | 2017-05-10 13:11:04 -0700 | [diff] [blame] | 54 | |
| 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 | |
Yuta HIGUCHI | 09ae368 | 2017-08-14 18:56:54 -0700 | [diff] [blame] | 66 | <build> |
| 67 | <plugins> |
| 68 | <plugin> |
| 69 | <groupId>org.apache.maven.plugins</groupId> |
| 70 | <artifactId>maven-resources-plugin</artifactId> |
| 71 | <!-- Workaround for P4 test code using symlinks in git --> |
| 72 | <!-- last version which copies symlink target --> |
| 73 | <version>2.7</version> |
| 74 | </plugin> |
| 75 | </plugins> |
| 76 | </build> |
| 77 | |
Andrea Campanella | 241896c | 2017-05-10 13:11:04 -0700 | [diff] [blame] | 78 | </project> |