Bump version in policy/models
[policy/models.git] / models-interactions / model-impl / cds / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3   ============LICENSE_START=======================================================
4   Copyright (C) 2019 Bell Canada.
5   ================================================================================
6   Licensed under the Apache License, Version 2.0 (the "License");
7   you may not use this file except in compliance with the License.
8   You may obtain a copy of the License at
9
10        http://www.apache.org/licenses/LICENSE-2.0
11
12   Unless required by applicable law or agreed to in writing, software
13   distributed under the License is distributed on an "AS IS" BASIS,
14   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15   See the License for the specific language governing permissions and
16   limitations under the License.
17   ============LICENSE_END=========================================================
18 -->
19
20 <project xmlns="http://maven.apache.org/POM/4.0.0"
21   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
22   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
23   <modelVersion>4.0.0</modelVersion>
24   <parent>
25     <artifactId>model-impl</artifactId>
26     <groupId>org.onap.policy.models.policy-models-interactions.model-impl</groupId>
27     <version>2.1.3-SNAPSHOT</version>
28   </parent>
29
30   <artifactId>cds</artifactId>
31   <name>${project.artifactId}</name>
32   <description>gRPC client implementation to send process message to CDS blueprint processor gRPC endpoint.</description>
33
34   <properties>
35     <grpc.version>1.17.1</grpc.version>
36     <protobuf.version>3.6.1</protobuf.version>
37     <grpc.netty.version>4.1.30.Final</grpc.netty.version>
38     <ccsdk.version>0.4.4</ccsdk.version>
39   </properties>
40
41   <dependencies>
42     <!-- CDS dependencies -->
43     <dependency>
44       <groupId>org.onap.ccsdk.cds.components</groupId>
45       <artifactId>proto-definition</artifactId>
46       <version>${ccsdk.version}</version>
47     </dependency>
48
49     <!-- protobuf dependencies -->
50     <dependency>
51       <groupId>com.google.protobuf</groupId>
52       <artifactId>protobuf-java</artifactId>
53       <version>${protobuf.version}</version>
54     </dependency>
55
56     <!-- gRPC dependencies -->
57     <dependency>
58       <groupId>io.grpc</groupId>
59       <artifactId>grpc-protobuf</artifactId>
60       <version>${grpc.version}</version>
61       <exclusions>
62         <exclusion>
63           <groupId>com.google.code.findbugs</groupId>
64           <artifactId>jsr305</artifactId>
65         </exclusion>
66       </exclusions>
67     </dependency>
68     <dependency>
69       <groupId>io.grpc</groupId>
70       <artifactId>grpc-stub</artifactId>
71       <version>${grpc.version}</version>
72     </dependency>
73     <dependency>
74       <groupId>io.grpc</groupId>
75       <artifactId>grpc-netty</artifactId>
76       <version>${grpc.version}</version>
77     </dependency>
78     <dependency>
79       <groupId>io.grpc</groupId>
80       <artifactId>grpc-testing</artifactId>
81       <version>${grpc.version}</version>
82       <scope>test</scope>
83     </dependency>
84
85     <!-- Policy dependencies -->
86     <dependency>
87       <groupId>org.onap.policy.common</groupId>
88       <artifactId>common-parameters</artifactId>
89       <version>${policy.common.version}</version>
90     </dependency>
91
92     <!-- junit dependencies -->
93     <dependency>
94       <groupId>org.mockito</groupId>
95       <artifactId>mockito-core</artifactId>
96       <version>2.13.0</version>
97       <scope>test</scope>
98     </dependency>
99   </dependencies>
100 </project>