Ray Milkey | e27bb90 | 2017-11-06 12:55:17 -0800 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
| 3 | ~ Copyright 2017-present Open Networking Foundation |
| 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 | <project xmlns="http://maven.apache.org/POM/4.0.0" |
| 18 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 19 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
| 20 | <modelVersion>4.0.0</modelVersion> |
| 21 | |
| 22 | <parent> |
| 23 | <groupId>org.onosproject</groupId> |
Ray Milkey | 1d46cb7 | 2017-11-06 13:30:41 -0800 | [diff] [blame] | 24 | <artifactId>onos-protocols</artifactId> |
ONOS Jenkins User | 45d340c | 2018-01-09 01:56:13 +0000 | [diff] [blame] | 25 | <version>1.13.0-SNAPSHOT</version> |
Ray Milkey | e27bb90 | 2017-11-06 12:55:17 -0800 | [diff] [blame] | 26 | </parent> |
| 27 | |
| 28 | <artifactId>onos-protocols-p4runtime</artifactId> |
| 29 | <packaging>pom</packaging> |
| 30 | |
| 31 | <description>ONOS P4 runtime protocol implementation</description> |
| 32 | |
| 33 | <modules> |
| 34 | <module>api</module> |
Yuta HIGUCHI | da1e199 | 2017-11-13 18:48:31 -0800 | [diff] [blame] | 35 | <module>proto</module> |
| 36 | <module>ctl</module> |
| 37 | <module>model</module> |
Ray Milkey | e27bb90 | 2017-11-06 12:55:17 -0800 | [diff] [blame] | 38 | </modules> |
| 39 | |
Ray Milkey | e27bb90 | 2017-11-06 12:55:17 -0800 | [diff] [blame] | 40 | <dependencies> |
| 41 | |
| 42 | <dependency> |
| 43 | <groupId>io.grpc</groupId> |
| 44 | <artifactId>grpc-core</artifactId> |
Carmelo Cascone | b1936bd | 2017-12-12 14:42:27 -0800 | [diff] [blame] | 45 | <version>1.3.1</version> |
Ray Milkey | e27bb90 | 2017-11-06 12:55:17 -0800 | [diff] [blame] | 46 | </dependency> |
| 47 | |
| 48 | |
| 49 | <dependency> |
| 50 | <groupId>org.osgi</groupId> |
| 51 | <artifactId>org.osgi.compendium</artifactId> |
| 52 | </dependency> |
| 53 | |
| 54 | <dependency> |
| 55 | <groupId>org.onosproject</groupId> |
| 56 | <artifactId>onos-api</artifactId> |
| 57 | </dependency> |
| 58 | |
| 59 | <dependency> |
| 60 | <groupId>org.onosproject</groupId> |
| 61 | <artifactId>onos-core-serializers</artifactId> |
| 62 | <version>${project.version}</version> |
| 63 | </dependency> |
| 64 | <dependency> |
| 65 | <groupId>org.easymock</groupId> |
| 66 | <artifactId>easymock</artifactId> |
| 67 | <scope>test</scope> |
| 68 | </dependency> |
| 69 | <dependency> |
| 70 | <groupId>org.apache.felix</groupId> |
| 71 | <artifactId>org.apache.felix.scr.annotations</artifactId> |
| 72 | </dependency> |
| 73 | <dependency> |
| 74 | <groupId>org.onosproject</groupId> |
Ray Milkey | e27bb90 | 2017-11-06 12:55:17 -0800 | [diff] [blame] | 75 | <artifactId>onos-drivers-default</artifactId> |
| 76 | <version>${project.version}</version> |
| 77 | </dependency> |
| 78 | <dependency> |
| 79 | <groupId>org.onosproject</groupId> |
| 80 | <artifactId>onos-api</artifactId> |
| 81 | <classifier>tests</classifier> |
| 82 | <scope>test</scope> |
| 83 | </dependency> |
| 84 | <dependency> |
| 85 | <groupId>org.onosproject</groupId> |
| 86 | <artifactId>onlab-junit</artifactId> |
| 87 | <scope>test</scope> |
| 88 | </dependency> |
| 89 | </dependencies> |
| 90 | |
| 91 | <build> |
| 92 | <plugins> |
| 93 | <plugin> |
| 94 | <groupId>org.apache.felix</groupId> |
| 95 | <artifactId>maven-scr-plugin</artifactId> |
| 96 | </plugin> |
| 97 | <plugin> |
| 98 | <groupId>org.apache.felix</groupId> |
| 99 | <artifactId>maven-bundle-plugin</artifactId> |
| 100 | </plugin> |
| 101 | <plugin> |
| 102 | <groupId>org.onosproject</groupId> |
| 103 | <artifactId>onos-maven-plugin</artifactId> |
| 104 | </plugin> |
| 105 | </plugins> |
| 106 | </build> |
| 107 | </project> |