blob: 3d7b887756b1d2c9536ecdf67ca1132e9370bd86 [file] [log] [blame]
Alexis de Talhouët9d88d3f2019-01-18 13:50:18 -05001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 Copyright (C) 2019 Bell Canada
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 -->
Timoney, Dan (dt5972)0e2eb6a2019-03-14 10:49:03 -040017<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
Alexis de Talhouët9d88d3f2019-01-18 13:50:18 -050018 <modelVersion>4.0.0</modelVersion>
19
20 <parent>
21 <groupId>org.onap.ccsdk.parent</groupId>
22 <artifactId>single-feature-parent</artifactId>
Timoney, Dan (dt5972)67d6e8b2019-05-23 16:35:00 -040023 <version>1.2.3</version>
Alexis de Talhouët9d88d3f2019-01-18 13:50:18 -050024 <relativePath/>
25 </parent>
26
27 <groupId>org.onap.ccsdk.sli.adaptors</groupId>
28 <artifactId>ccsdk-grpc-client</artifactId>
Timoney, Dan (dt5972)11dc9262019-04-30 11:32:13 -040029 <version>0.4.3-SNAPSHOT</version>
Alexis de Talhouët9d88d3f2019-01-18 13:50:18 -050030 <packaging>feature</packaging>
31
32 <name>ccsdk-sli-adaptors :: grpc-client :: ${project.artifactId}</name>
33
Alexis de Talhouët9d88d3f2019-01-18 13:50:18 -050034 <dependencies>
35 <dependency>
36 <groupId>org.opendaylight.controller</groupId>
37 <artifactId>odl-mdsal-broker</artifactId>
38 <type>xml</type>
39 <classifier>features</classifier>
40 </dependency>
41
42 <dependency>
43 <groupId>org.onap.ccsdk.sli.core</groupId>
44 <artifactId>ccsdk-sli</artifactId>
45 <version>${ccsdk.sli.core.version}</version>
46 <type>xml</type>
47 <classifier>features</classifier>
48 </dependency>
49
50 <dependency>
51 <groupId>${project.groupId}</groupId>
52 <artifactId>grpc-client-provider</artifactId>
53 <version>${project.version}</version>
54 </dependency>
Alexis de Talhouëtafde7322019-01-18 15:14:23 -050055
Alexis de Talhouët09460af2019-02-28 14:59:03 -050056 <!--overwrite protobuf jave version-->
Alexis de Talhouëtafde7322019-01-18 15:14:23 -050057 <dependency>
58 <groupId>com.google.protobuf</groupId>
59 <artifactId>protobuf-java</artifactId>
60 <version>3.6.1</version>
61 </dependency>
Alexis de Talhouët9d88d3f2019-01-18 13:50:18 -050062 </dependencies>
63</project>