Alexis de Talhouët | 9d88d3f | 2019-01-18 13:50:18 -0500 | [diff] [blame] | 1 | <?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) | 0e2eb6a | 2019-03-14 10:49:03 -0400 | [diff] [blame] | 17 | <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ët | 9d88d3f | 2019-01-18 13:50:18 -0500 | [diff] [blame] | 18 | <modelVersion>4.0.0</modelVersion> |
| 19 | |
| 20 | <parent> |
| 21 | <groupId>org.onap.ccsdk.parent</groupId> |
| 22 | <artifactId>single-feature-parent</artifactId> |
Timoney, Dan (dt5972) | 67d6e8b | 2019-05-23 16:35:00 -0400 | [diff] [blame^] | 23 | <version>1.2.3</version> |
Alexis de Talhouët | 9d88d3f | 2019-01-18 13:50:18 -0500 | [diff] [blame] | 24 | <relativePath/> |
| 25 | </parent> |
| 26 | |
| 27 | <groupId>org.onap.ccsdk.sli.adaptors</groupId> |
| 28 | <artifactId>ccsdk-grpc-client</artifactId> |
Timoney, Dan (dt5972) | 11dc926 | 2019-04-30 11:32:13 -0400 | [diff] [blame] | 29 | <version>0.4.3-SNAPSHOT</version> |
Alexis de Talhouët | 9d88d3f | 2019-01-18 13:50:18 -0500 | [diff] [blame] | 30 | <packaging>feature</packaging> |
| 31 | |
| 32 | <name>ccsdk-sli-adaptors :: grpc-client :: ${project.artifactId}</name> |
| 33 | |
Alexis de Talhouët | 9d88d3f | 2019-01-18 13:50:18 -0500 | [diff] [blame] | 34 | <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ët | afde732 | 2019-01-18 15:14:23 -0500 | [diff] [blame] | 55 | |
Alexis de Talhouët | 09460af | 2019-02-28 14:59:03 -0500 | [diff] [blame] | 56 | <!--overwrite protobuf jave version--> |
Alexis de Talhouët | afde732 | 2019-01-18 15:14:23 -0500 | [diff] [blame] | 57 | <dependency> |
| 58 | <groupId>com.google.protobuf</groupId> |
| 59 | <artifactId>protobuf-java</artifactId> |
| 60 | <version>3.6.1</version> |
| 61 | </dependency> |
Alexis de Talhouët | 9d88d3f | 2019-01-18 13:50:18 -0500 | [diff] [blame] | 62 | </dependencies> |
| 63 | </project> |