Merge "SDC Listner Docker touchup"
[ccsdk/cds.git] / ms / sdclistener / application / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3   ~ Copyright (C) 2019 Bell Canada. All rights reserved.
4   ~
5   ~ NOTICE:  All the intellectual and technical concepts contained herein are
6   ~ proprietary to Bell Canada and are protected by trade secret or copyright law.
7   ~ Unauthorized copying of this file, via any medium is strictly prohibited.
8   -->
9 <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">
10   <modelVersion>4.0.0</modelVersion>
11   <parent>
12     <groupId>org.onap.ccsdk.cds.sdclistener</groupId>
13     <artifactId>parent</artifactId>
14     <version>0.4.2-SNAPSHOT</version>
15     <relativePath>../parent</relativePath>
16   </parent>
17
18   <artifactId>application</artifactId>
19   <packaging>jar</packaging>
20   <version>0.4.2-SNAPSHOT</version>
21   <name>SDC Listener Application</name>
22
23   <properties>
24     <protobuf.version>3.6.1</protobuf.version>
25     <project.version>${parent.version}</project.version>
26   </properties>
27
28   <dependencies>
29     <!-- Spring boot -->
30     <dependency>
31       <groupId>org.springframework.boot</groupId>
32       <artifactId>spring-boot-starter-web</artifactId>
33     </dependency>
34     <dependency>
35       <groupId>org.springframework.boot</groupId>
36       <artifactId>spring-boot-starter-test</artifactId>
37       <scope>test</scope>
38     </dependency>
39
40     <!-- SDC Distribution client dependency -->
41     <dependency>
42       <groupId>org.onap.sdc.sdc-distribution-client</groupId>
43       <artifactId>sdc-distribution-client</artifactId>
44       <version>1.3.0</version>
45     </dependency>
46
47     <dependency>
48       <groupId>org.jmockit</groupId>
49       <artifactId>jmockit</artifactId>
50       <scope>test</scope>
51     </dependency>
52
53     <!-- GRPC Dependencies -->
54     <dependency>
55       <groupId>io.grpc</groupId>
56       <artifactId>grpc-netty</artifactId>
57       <version>${grpc.version}</version>
58     </dependency>
59     <dependency>
60       <groupId>io.grpc</groupId>
61       <artifactId>grpc-protobuf</artifactId>
62       <version>${grpc.version}</version>
63     </dependency>
64     <dependency>
65       <groupId>io.grpc</groupId>
66       <artifactId>grpc-stub</artifactId>
67       <version>${grpc.version}</version>
68     </dependency>
69     <dependency>
70       <groupId>com.google.protobuf</groupId>
71       <artifactId>protobuf-java</artifactId>
72     </dependency>
73     <dependency>
74       <groupId>io.grpc</groupId>
75       <artifactId>grpc-testing</artifactId>
76       <scope>test</scope>
77     </dependency>
78     <dependency>
79       <groupId>org.onap.ccsdk.cds.components</groupId>
80       <artifactId>proto-definition</artifactId>
81     </dependency>
82
83     <dependency>
84       <groupId>io.projectreactor</groupId>
85       <artifactId>reactor-core</artifactId>
86       <scope>compile</scope>
87     </dependency>
88   </dependencies>
89 </project>