Fixing restconf_client.py script
[ccsdk/cds.git] / ms / sdclistener / application / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3   ~  Copyright © 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   -->
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">
18   <modelVersion>4.0.0</modelVersion>
19   <parent>
20     <groupId>org.onap.ccsdk.cds.sdclistener</groupId>
21     <artifactId>parent</artifactId>
22     <version>0.4.5-SNAPSHOT</version>
23     <relativePath>../parent</relativePath>
24   </parent>
25
26   <artifactId>application</artifactId>
27   <packaging>jar</packaging>
28   <version>0.4.5-SNAPSHOT</version>
29   <name>SDC Listener Application</name>
30
31   <properties>
32     <protobuf.version>3.6.1</protobuf.version>
33     <project.version>${parent.version}</project.version>
34   </properties>
35
36   <dependencies>
37     <!-- Spring boot -->
38     <dependency>
39       <groupId>org.springframework.boot</groupId>
40       <artifactId>spring-boot-starter-web</artifactId>
41     </dependency>
42     <dependency>
43       <groupId>org.springframework.boot</groupId>
44       <artifactId>spring-boot-starter-test</artifactId>
45       <scope>test</scope>
46     </dependency>
47
48     <!-- SDC Distribution client dependency -->
49     <dependency>
50       <groupId>org.onap.sdc.sdc-distribution-client</groupId>
51       <artifactId>sdc-distribution-client</artifactId>
52       <version>1.3.0</version>
53     </dependency>
54
55     <dependency>
56       <groupId>org.jmockit</groupId>
57       <artifactId>jmockit</artifactId>
58       <scope>test</scope>
59     </dependency>
60
61     <!-- GRPC Dependencies -->
62     <dependency>
63       <groupId>io.grpc</groupId>
64       <artifactId>grpc-netty</artifactId>
65       <version>${grpc.version}</version>
66     </dependency>
67     <dependency>
68       <groupId>io.grpc</groupId>
69       <artifactId>grpc-protobuf</artifactId>
70       <version>${grpc.version}</version>
71     </dependency>
72     <dependency>
73       <groupId>io.grpc</groupId>
74       <artifactId>grpc-stub</artifactId>
75       <version>${grpc.version}</version>
76     </dependency>
77     <dependency>
78       <groupId>com.google.protobuf</groupId>
79       <artifactId>protobuf-java</artifactId>
80     </dependency>
81     <dependency>
82       <groupId>io.grpc</groupId>
83       <artifactId>grpc-testing</artifactId>
84       <scope>test</scope>
85     </dependency>
86     <dependency>
87       <groupId>org.onap.ccsdk.cds.components</groupId>
88       <artifactId>proto-definition</artifactId>
89     </dependency>
90
91     <dependency>
92       <groupId>io.projectreactor</groupId>
93       <artifactId>reactor-core</artifactId>
94       <scope>compile</scope>
95     </dependency>
96   </dependencies>
97 </project>