blob: 7b6fed0b5a8b32cad2e18a7fcffbdd043293ccf5 [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>
22 <artifactId>onos-incubator</artifactId>
23 <groupId>org.onosproject</groupId>
24 <version>1.7.0-SNAPSHOT</version>
25 </parent>
26 <modelVersion>4.0.0</modelVersion>
27
28 <artifactId>onos-incubator-grpc</artifactId>
29 <packaging>bundle</packaging>
30
31 <properties>
32 <onos.app.name>org.onosproject.incubator.grpc</onos.app.name>
33 <onos.app.title>gRPC dependency package</onos.app.title>
34 <protobuf.version>3.0.0</protobuf.version>
35 <grpc.version>1.0.0-pre2</grpc.version>
36 <grpc.package.version>1.0.0</grpc.package.version>
37 <grpc.netty.version>4.1.3.Final</grpc.netty.version>
38 <grpc.netty.package.version>4.1.3</grpc.netty.package.version>
39 <google.auth.version>0.4.0</google.auth.version>
40 </properties>
41
42 <!-- gRPC requires more recent version of netty -->
43 <dependencyManagement>
44 <dependencies>
45 <dependency>
46 <groupId>io.grpc</groupId>
47 <artifactId>grpc-core</artifactId>
48 <version>${grpc.version}</version>
49 </dependency>
50 <dependency>
51 <groupId>io.grpc</groupId>
52 <artifactId>grpc-protobuf</artifactId>
53 <version>${grpc.version}</version>
54 </dependency>
55 <dependency>
56 <groupId>io.grpc</groupId>
57 <artifactId>grpc-stub</artifactId>
58 <version>${grpc.version}</version>
59 </dependency>
60 <dependency>
61 <groupId>io.grpc</groupId>
62 <artifactId>grpc-netty</artifactId>
63 <version>${grpc.version}</version>
64 </dependency>
65 <dependency>
66 <groupId>io.grpc</groupId>
67 <artifactId>grpc-auth</artifactId>
68 <version>${grpc.version}</version>
69 </dependency>
70
71 <dependency>
72 <groupId>io.netty</groupId>
73 <artifactId>netty-codec</artifactId>
74 <version>${grpc.netty.version}</version>
75 </dependency>
76 <dependency>
77 <groupId>io.netty</groupId>
78 <artifactId>netty-transport</artifactId>
79 <version>${grpc.netty.version}</version>
80 </dependency>
81 <dependency>
82 <groupId>io.netty</groupId>
83 <artifactId>netty-handler</artifactId>
84 <version>${grpc.netty.version}</version>
85 </dependency>
86 <dependency>
87 <groupId>io.netty</groupId>
88 <artifactId>netty-buffer</artifactId>
89 <version>${grpc.netty.version}</version>
90 </dependency>
91 <dependency>
92 <groupId>io.netty</groupId>
93 <artifactId>netty-common</artifactId>
94 <version>${grpc.netty.version}</version>
95 </dependency>
96 </dependencies>
97 </dependencyManagement>
98
99 <dependencies>
100 <dependency>
101 <groupId>io.grpc</groupId>
102 <artifactId>grpc-core</artifactId>
103 </dependency>
104 <dependency>
105 <groupId>io.grpc</groupId>
106 <artifactId>grpc-protobuf</artifactId>
107 </dependency>
108 <dependency>
109 <groupId>io.grpc</groupId>
110 <artifactId>grpc-stub</artifactId>
111 </dependency>
112 <dependency>
113 <groupId>io.grpc</groupId>
114 <artifactId>grpc-netty</artifactId>
115 </dependency>
116 <dependency>
117 <groupId>io.grpc</groupId>
118 <artifactId>grpc-auth</artifactId>
119 </dependency>
120 </dependencies>
121
122 <build>
123 <plugins>
124 <plugin>
125 <groupId>org.onosproject</groupId>
126 <artifactId>onos-maven-plugin</artifactId>
127 </plugin>
128 </plugins>
129 </build>
130
131
132</project>