Merge "virtualenv lib changed. need to pin to older version."
[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
20     <parent>
21         <groupId>org.onap.ccsdk.cds.sdclistener</groupId>
22         <artifactId>parent</artifactId>
23         <version>0.7.0-SNAPSHOT</version>
24         <relativePath>../parent</relativePath>
25     </parent>
26
27     <artifactId>application</artifactId>
28     <version>0.7.0-SNAPSHOT</version>
29     <packaging>jar</packaging>
30
31     <name>SDC Listener Application</name>
32
33     <properties>
34         <protobuf.version>3.6.1</protobuf.version>
35         <project.version>${project.parent.version}</project.version>
36     </properties>
37
38     <dependencies>
39         <!-- Spring boot -->
40         <dependency>
41             <groupId>org.springframework.boot</groupId>
42             <artifactId>spring-boot-starter-webflux</artifactId>
43             <exclusions>
44                 <exclusion>
45                     <groupId>org.springframework.boot</groupId>
46                     <artifactId>spring-boot-starter-logging</artifactId>
47                 </exclusion>
48             </exclusions>
49         </dependency>
50         <dependency>
51             <groupId>org.springframework.boot</groupId>
52             <artifactId>spring-boot-starter-test</artifactId>
53             <scope>test</scope>
54         </dependency>
55
56         <dependency>
57             <groupId>org.onap.ccsdk.cds.blueprintsprocessor</groupId>
58             <artifactId>health-api-common</artifactId>
59             <version>0.7.0-SNAPSHOT</version>
60         </dependency>
61
62         <!-- SDC Distribution client dependency -->
63         <dependency>
64             <groupId>org.onap.sdc.sdc-distribution-client</groupId>
65             <artifactId>sdc-distribution-client</artifactId>
66         </dependency>
67
68         <dependency>
69             <groupId>org.jmockit</groupId>
70             <artifactId>jmockit</artifactId>
71             <scope>test</scope>
72         </dependency>
73
74         <!-- GRPC Dependencies -->
75         <dependency>
76             <groupId>io.grpc</groupId>
77             <artifactId>grpc-netty</artifactId>
78         </dependency>
79         <dependency>
80             <groupId>io.grpc</groupId>
81             <artifactId>grpc-protobuf</artifactId>
82         </dependency>
83         <dependency>
84             <groupId>io.grpc</groupId>
85             <artifactId>grpc-stub</artifactId>
86         </dependency>
87         <dependency>
88             <groupId>io.grpc</groupId>
89             <artifactId>grpc-netty-shaded</artifactId>
90         </dependency>
91         <dependency>
92             <groupId>io.grpc</groupId>
93             <artifactId>grpc-grpclb</artifactId>
94         </dependency>
95         <dependency>
96             <groupId>com.google.protobuf</groupId>
97             <artifactId>protobuf-java</artifactId>
98         </dependency>
99         <dependency>
100             <groupId>com.google.protobuf</groupId>
101             <artifactId>protobuf-java-util</artifactId>
102         </dependency>
103         <dependency>
104             <groupId>io.grpc</groupId>
105             <artifactId>grpc-testing</artifactId>
106             <scope>test</scope>
107         </dependency>
108         <dependency>
109             <groupId>org.onap.ccsdk.cds.blueprintsprocessor</groupId>
110             <artifactId>blueprint-proto</artifactId>
111         </dependency>
112
113         <dependency>
114             <groupId>ch.qos.logback</groupId>
115             <artifactId>logback-classic</artifactId>
116         </dependency>
117
118         <dependency>
119             <groupId>io.projectreactor</groupId>
120             <artifactId>reactor-core</artifactId>
121             <scope>compile</scope>
122         </dependency>
123     </dependencies>
124 </project>