blob: 14589c871279f81f80a354453755f98ede2268d5 [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>
ONOS Jenkins User6a6ac1d2017-12-09 03:39:39 +000025 <version>1.13.0-b1</version>
Ray Milkeye27bb902017-11-06 12:55:17 -080026 </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 HIGUCHIda1e1992017-11-13 18:48:31 -080035 <module>proto</module>
36 <module>ctl</module>
37 <module>model</module>
Ray Milkeye27bb902017-11-06 12:55:17 -080038 </modules>
39
Ray Milkeye27bb902017-11-06 12:55:17 -080040 <dependencies>
41
42 <dependency>
43 <groupId>io.grpc</groupId>
44 <artifactId>grpc-core</artifactId>
45 <version>1.3.0</version>
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 Milkeye27bb902017-11-06 12:55:17 -080075 <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>