blob: 6a8c07f16f4c32db1dbc58aa7dde488942934622 [file] [log] [blame]
Jonathan Hart097c8f52016-06-09 18:08:11 -07001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 ~ Copyright 2016-present Open Networking Laboratory
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
18<project xmlns="http://maven.apache.org/POM/4.0.0"
19 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
20 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
21 <parent>
Yuta HIGUCHIa0557a22017-01-11 16:22:53 -080022 <artifactId>onos-incubator-grpc-dependencies</artifactId>
Jonathan Hart097c8f52016-06-09 18:08:11 -070023 <groupId>org.onosproject</groupId>
Ray Milkey287b4ae2017-01-19 15:21:17 -080024 <version>1.9.0-SNAPSHOT</version>
Yuta HIGUCHIa0557a22017-01-11 16:22:53 -080025 <relativePath>../grpc-dependencies/pom.xml</relativePath>
Jonathan Hart097c8f52016-06-09 18:08:11 -070026 </parent>
27 <modelVersion>4.0.0</modelVersion>
28
29 <artifactId>onos-incubator-grpc</artifactId>
30 <packaging>bundle</packaging>
31
32 <properties>
33 <onos.app.name>org.onosproject.incubator.grpc</onos.app.name>
Yuta HIGUCHIa0557a22017-01-11 16:22:53 -080034 <onos.app.title>gRPC dependency App</onos.app.title>
Jonathan Hart097c8f52016-06-09 18:08:11 -070035 </properties>
36
37 <!-- gRPC requires more recent version of netty -->
38 <dependencyManagement>
39 <dependencies>
40 <dependency>
41 <groupId>io.grpc</groupId>
42 <artifactId>grpc-core</artifactId>
43 <version>${grpc.version}</version>
44 </dependency>
45 <dependency>
46 <groupId>io.grpc</groupId>
47 <artifactId>grpc-protobuf</artifactId>
48 <version>${grpc.version}</version>
49 </dependency>
50 <dependency>
51 <groupId>io.grpc</groupId>
52 <artifactId>grpc-stub</artifactId>
53 <version>${grpc.version}</version>
54 </dependency>
55 <dependency>
56 <groupId>io.grpc</groupId>
57 <artifactId>grpc-netty</artifactId>
58 <version>${grpc.version}</version>
59 </dependency>
60 <dependency>
61 <groupId>io.grpc</groupId>
62 <artifactId>grpc-auth</artifactId>
63 <version>${grpc.version}</version>
64 </dependency>
65
66 <dependency>
67 <groupId>io.netty</groupId>
68 <artifactId>netty-codec</artifactId>
69 <version>${grpc.netty.version}</version>
70 </dependency>
71 <dependency>
72 <groupId>io.netty</groupId>
73 <artifactId>netty-transport</artifactId>
74 <version>${grpc.netty.version}</version>
75 </dependency>
76 <dependency>
77 <groupId>io.netty</groupId>
78 <artifactId>netty-handler</artifactId>
79 <version>${grpc.netty.version}</version>
80 </dependency>
81 <dependency>
82 <groupId>io.netty</groupId>
83 <artifactId>netty-buffer</artifactId>
84 <version>${grpc.netty.version}</version>
85 </dependency>
86 <dependency>
87 <groupId>io.netty</groupId>
88 <artifactId>netty-common</artifactId>
89 <version>${grpc.netty.version}</version>
90 </dependency>
91 </dependencies>
92 </dependencyManagement>
93
94 <dependencies>
95 <dependency>
96 <groupId>io.grpc</groupId>
97 <artifactId>grpc-core</artifactId>
98 </dependency>
99 <dependency>
100 <groupId>io.grpc</groupId>
101 <artifactId>grpc-protobuf</artifactId>
102 </dependency>
103 <dependency>
104 <groupId>io.grpc</groupId>
105 <artifactId>grpc-stub</artifactId>
106 </dependency>
107 <dependency>
108 <groupId>io.grpc</groupId>
109 <artifactId>grpc-netty</artifactId>
110 </dependency>
111 <dependency>
112 <groupId>io.grpc</groupId>
113 <artifactId>grpc-auth</artifactId>
114 </dependency>
115 </dependencies>
116
117 <build>
118 <plugins>
119 <plugin>
120 <groupId>org.onosproject</groupId>
121 <artifactId>onos-maven-plugin</artifactId>
122 </plugin>
123 </plugins>
124 </build>
125
Jonathan Hart097c8f52016-06-09 18:08:11 -0700126</project>