blob: 6dfdde6697e23c0db8cce151b17d8adda1a090b9 [file] [log] [blame]
Ray Milkeye27bb902017-11-06 12:55:17 -08001<?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 Milkey1d46cb72017-11-06 13:30:41 -080024 <artifactId>onos-protocols</artifactId>
Ray Milkeye27bb902017-11-06 12:55:17 -080025 <version>1.12.0-SNAPSHOT</version>
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>
Sean Condonbf7d39b2017-11-04 18:34:53 +000035 <module>proto</module>
36 <module>ctl</module>
Ray Milkeye27bb902017-11-06 12:55:17 -080037 </modules>
38
39 <!--<properties>
40 <onos.app.name>org.onosproject.drivers</onos.app.name>
41 </properties>-->
42
43 <dependencies>
44
45 <dependency>
46 <groupId>io.grpc</groupId>
47 <artifactId>grpc-core</artifactId>
48 <version>1.3.0</version>
49 </dependency>
50
51
52 <dependency>
53 <groupId>org.osgi</groupId>
54 <artifactId>org.osgi.compendium</artifactId>
55 </dependency>
56
57 <dependency>
58 <groupId>org.onosproject</groupId>
59 <artifactId>onos-api</artifactId>
60 </dependency>
61
62 <dependency>
63 <groupId>org.onosproject</groupId>
64 <artifactId>onos-core-serializers</artifactId>
65 <version>${project.version}</version>
66 </dependency>
67 <dependency>
68 <groupId>org.easymock</groupId>
69 <artifactId>easymock</artifactId>
70 <scope>test</scope>
71 </dependency>
72 <dependency>
73 <groupId>org.apache.felix</groupId>
74 <artifactId>org.apache.felix.scr.annotations</artifactId>
75 </dependency>
76 <dependency>
77 <groupId>org.onosproject</groupId>
78 <artifactId>onos-incubator-bmv2-model</artifactId>
79 <version>${project.version}</version>
80 </dependency>
81 <dependency>
82 <groupId>org.onosproject</groupId>
83 <artifactId>onos-drivers-default</artifactId>
84 <version>${project.version}</version>
85 </dependency>
86 <dependency>
87 <groupId>org.onosproject</groupId>
88 <artifactId>onos-api</artifactId>
89 <classifier>tests</classifier>
90 <scope>test</scope>
91 </dependency>
92 <dependency>
93 <groupId>org.onosproject</groupId>
94 <artifactId>onlab-junit</artifactId>
95 <scope>test</scope>
96 </dependency>
97 </dependencies>
98
99 <build>
100 <plugins>
101 <plugin>
102 <groupId>org.apache.felix</groupId>
103 <artifactId>maven-scr-plugin</artifactId>
104 </plugin>
105 <plugin>
106 <groupId>org.apache.felix</groupId>
107 <artifactId>maven-bundle-plugin</artifactId>
108 </plugin>
109 <plugin>
110 <groupId>org.onosproject</groupId>
111 <artifactId>onos-maven-plugin</artifactId>
112 </plugin>
113 </plugins>
114 </build>
115</project>