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> |
ONOS Jenkins User | aa868b6 | 2018-04-13 23:05:13 +0000 | [diff] [blame] | 24 | <version>1.13.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> |
Yuta HIGUCHI | 165afdd | 2018-03-06 20:18:13 -0800 | [diff] [blame] | 35 | <artifactId>onos-protocols-grpc-api</artifactId> |
Andrea Campanella | 378e21a | 2017-06-07 12:09:59 +0200 | [diff] [blame] | 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> |
Carmelo Cascone | b1936bd | 2017-12-12 14:42:27 -0800 | [diff] [blame] | 42 | <version>1.3.1</version> |
Yuta HIGUCHI | 28c3daa | 2017-07-13 13:38:04 -0700 | [diff] [blame] | 43 | </dependency> |
| 44 | |
| 45 | <dependency> |
| 46 | <groupId>org.onosproject</groupId> |
Yuta HIGUCHI | 165afdd | 2018-03-06 20:18:13 -0800 | [diff] [blame] | 47 | <artifactId>onos-protocols-p4runtime-api</artifactId> |
Yuta HIGUCHI | 28c3daa | 2017-07-13 13:38:04 -0700 | [diff] [blame] | 48 | <version>${project.version}</version> |
| 49 | </dependency> |
| 50 | |
Yuta HIGUCHI | 165afdd | 2018-03-06 20:18:13 -0800 | [diff] [blame] | 51 | <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 HIGUCHI | 28c3daa | 2017-07-13 13:38:04 -0700 | [diff] [blame] | 68 | |
Andrea Campanella | 378e21a | 2017-06-07 12:09:59 +0200 | [diff] [blame] | 69 | </dependencies> |
Andrea Campanella | 241896c | 2017-05-10 13:11:04 -0700 | [diff] [blame] | 70 | |
| 71 | <properties> |
| 72 | <onos.app.name>org.onosproject.drivers.bmv2</onos.app.name> |
Thomas Vachuska | a10137c | 2018-04-03 16:45:59 -0700 | [diff] [blame] | 73 | <onos.app.origin>ONOS Community</onos.app.origin> |
Andrea Campanella | 241896c | 2017-05-10 13:11:04 -0700 | [diff] [blame] | 74 | <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 HIGUCHI | 09ae368 | 2017-08-14 18:56:54 -0700 | [diff] [blame] | 82 | <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 Campanella | 241896c | 2017-05-10 13:11:04 -0700 | [diff] [blame] | 94 | </project> |