Andrea Campanella | 241896c | 2017-05-10 13:11:04 -0700 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
Esin Karaman | 971fb7f | 2017-12-28 13:44:52 +0000 | [diff] [blame] | 3 | ~ Copyright 2018-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 | |
Esin Karaman | 971fb7f | 2017-12-28 13:44:52 +0000 | [diff] [blame] | 18 | <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 19 | xmlns="http://maven.apache.org/POM/4.0.0" |
Andrea Campanella | 241896c | 2017-05-10 13:11:04 -0700 | [diff] [blame] | 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 | 03e5521 | 2018-08-14 22:13:58 +0000 | [diff] [blame] | 24 | <version>1.14.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> |
Esin Karaman | 971fb7f | 2017-12-28 13:44:52 +0000 | [diff] [blame] | 40 | <groupId>org.onosproject</groupId> |
| 41 | <artifactId>onos-core-serializers</artifactId> |
| 42 | <version>${project.version}</version> |
| 43 | </dependency> |
| 44 | |
| 45 | <dependency> |
Yuta HIGUCHI | 28c3daa | 2017-07-13 13:38:04 -0700 | [diff] [blame] | 46 | <groupId>io.grpc</groupId> |
| 47 | <artifactId>grpc-netty</artifactId> |
Yuta HIGUCHI | 08392f4 | 2018-06-07 17:15:46 -0700 | [diff] [blame] | 48 | <version>${grpccore.version}</version> |
Yuta HIGUCHI | 28c3daa | 2017-07-13 13:38:04 -0700 | [diff] [blame] | 49 | </dependency> |
| 50 | |
| 51 | <dependency> |
| 52 | <groupId>org.onosproject</groupId> |
Yuta HIGUCHI | 165afdd | 2018-03-06 20:18:13 -0800 | [diff] [blame] | 53 | <artifactId>onos-protocols-p4runtime-api</artifactId> |
Yuta HIGUCHI | 28c3daa | 2017-07-13 13:38:04 -0700 | [diff] [blame] | 54 | <version>${project.version}</version> |
| 55 | </dependency> |
| 56 | |
Yuta HIGUCHI | 165afdd | 2018-03-06 20:18:13 -0800 | [diff] [blame] | 57 | <dependency> |
| 58 | <groupId>org.onosproject</groupId> |
| 59 | <artifactId>onos-protocols-p4runtime-model</artifactId> |
| 60 | <version>${project.version}</version> |
| 61 | </dependency> |
| 62 | |
| 63 | <dependency> |
| 64 | <groupId>org.onosproject</groupId> |
| 65 | <artifactId>onos-drivers-p4runtime</artifactId> |
| 66 | <version>${project.version}</version> |
| 67 | </dependency> |
| 68 | |
| 69 | <dependency> |
| 70 | <groupId>org.onosproject</groupId> |
| 71 | <artifactId>onos-pipelines-basic</artifactId> |
| 72 | <version>${project.version}</version> |
| 73 | </dependency> |
Yuta HIGUCHI | 28c3daa | 2017-07-13 13:38:04 -0700 | [diff] [blame] | 74 | |
Esin Karaman | 971fb7f | 2017-12-28 13:44:52 +0000 | [diff] [blame] | 75 | <dependency> |
| 76 | <groupId>org.onosproject</groupId> |
Yuta HIGUCHI | cf91a2d | 2018-07-03 14:26:13 +0900 | [diff] [blame] | 77 | <artifactId>onos-protocols-bmv2-thrift-api</artifactId> |
Esin Karaman | 971fb7f | 2017-12-28 13:44:52 +0000 | [diff] [blame] | 78 | <version>${project.version}</version> |
| 79 | </dependency> |
| 80 | |
| 81 | <dependency> |
| 82 | <groupId>org.apache.thrift</groupId> |
| 83 | <artifactId>libthrift</artifactId> |
| 84 | <version>0.9.3</version> |
| 85 | </dependency> |
| 86 | <!-- protocols/p4runtime/api missing --> |
| 87 | |
Andrea Campanella | 378e21a | 2017-06-07 12:09:59 +0200 | [diff] [blame] | 88 | </dependencies> |
Andrea Campanella | 241896c | 2017-05-10 13:11:04 -0700 | [diff] [blame] | 89 | |
| 90 | <properties> |
| 91 | <onos.app.name>org.onosproject.drivers.bmv2</onos.app.name> |
Thomas Vachuska | a10137c | 2018-04-03 16:45:59 -0700 | [diff] [blame] | 92 | <onos.app.origin>ONOS Community</onos.app.origin> |
Andrea Campanella | 241896c | 2017-05-10 13:11:04 -0700 | [diff] [blame] | 93 | <onos.app.title>BMv2 Device Drivers</onos.app.title> |
| 94 | <onos.app.category>Drivers</onos.app.category> |
| 95 | <onos.app.url>http://onosproject.org</onos.app.url> |
| 96 | <onos.app.requires> |
| 97 | org.onosproject.generaldeviceprovider |
| 98 | </onos.app.requires> |
| 99 | </properties> |
| 100 | |
Yuta HIGUCHI | 09ae368 | 2017-08-14 18:56:54 -0700 | [diff] [blame] | 101 | <build> |
| 102 | <plugins> |
| 103 | <plugin> |
| 104 | <groupId>org.apache.maven.plugins</groupId> |
| 105 | <artifactId>maven-resources-plugin</artifactId> |
| 106 | <!-- Workaround for P4 test code using symlinks in git --> |
| 107 | <!-- last version which copies symlink target --> |
| 108 | <version>2.7</version> |
| 109 | </plugin> |
| 110 | </plugins> |
| 111 | </build> |
| 112 | |
Andrea Campanella | 241896c | 2017-05-10 13:11:04 -0700 | [diff] [blame] | 113 | </project> |