blob: 157c1a863ea6eab666e20113c3181f4c1e734e15 [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 User03e55212018-08-14 22:13:58 +000025 <version>1.14.0-SNAPSHOT</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>
Ray Milkeye27bb902017-11-06 12:55:17 -080045 </dependency>
46
47
48 <dependency>
49 <groupId>org.osgi</groupId>
50 <artifactId>org.osgi.compendium</artifactId>
51 </dependency>
52
53 <dependency>
54 <groupId>org.onosproject</groupId>
55 <artifactId>onos-api</artifactId>
56 </dependency>
57
58 <dependency>
59 <groupId>org.onosproject</groupId>
60 <artifactId>onos-core-serializers</artifactId>
61 <version>${project.version}</version>
62 </dependency>
63 <dependency>
64 <groupId>org.easymock</groupId>
65 <artifactId>easymock</artifactId>
66 <scope>test</scope>
67 </dependency>
68 <dependency>
69 <groupId>org.apache.felix</groupId>
70 <artifactId>org.apache.felix.scr.annotations</artifactId>
71 </dependency>
72 <dependency>
73 <groupId>org.onosproject</groupId>
Ray Milkeye27bb902017-11-06 12:55:17 -080074 <artifactId>onos-drivers-default</artifactId>
75 <version>${project.version}</version>
76 </dependency>
77 <dependency>
78 <groupId>org.onosproject</groupId>
79 <artifactId>onos-api</artifactId>
80 <classifier>tests</classifier>
81 <scope>test</scope>
82 </dependency>
83 <dependency>
84 <groupId>org.onosproject</groupId>
85 <artifactId>onlab-junit</artifactId>
86 <scope>test</scope>
87 </dependency>
88 </dependencies>
89
90 <build>
91 <plugins>
92 <plugin>
93 <groupId>org.apache.felix</groupId>
94 <artifactId>maven-scr-plugin</artifactId>
95 </plugin>
96 <plugin>
97 <groupId>org.apache.felix</groupId>
98 <artifactId>maven-bundle-plugin</artifactId>
99 </plugin>
100 <plugin>
101 <groupId>org.onosproject</groupId>
102 <artifactId>onos-maven-plugin</artifactId>
103 </plugin>
104 </plugins>
105 </build>
106</project>