Update versions for London
[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
18 <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">
19     <modelVersion>4.0.0</modelVersion>
20
21     <parent>
22         <groupId>org.onap.ccsdk.cds.sdclistener</groupId>
23         <artifactId>sdclistener-parent</artifactId>
24         <version>1.5.0-SNAPSHOT</version>
25         <relativePath>../parent</relativePath>
26     </parent>
27
28     <artifactId>sdclistener-application</artifactId>
29     <packaging>jar</packaging>
30
31     <name>MS 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         <dependency>
56             <groupId>org.onap.ccsdk.cds.blueprintsprocessor.modules</groupId>
57             <artifactId>health-api-common</artifactId>
58             <version>${ccsdk.cds.version}</version>
59             <exclusions>
60                 <exclusion>
61                     <groupId>org.springframework.boot</groupId>
62                     <artifactId>spring-boot-starter-data-jpa</artifactId>
63                 </exclusion>
64             </exclusions>
65         </dependency>
66
67         <!-- SDC Distribution client dependency -->
68         <dependency>
69             <groupId>org.onap.sdc.sdc-distribution-client</groupId>
70             <artifactId>sdc-distribution-client</artifactId>
71         </dependency>
72         <dependency>
73             <groupId>org.jmockit</groupId>
74             <artifactId>jmockit</artifactId>
75             <version>${jmockit.version}</version>
76             <scope>test</scope>
77         </dependency>
78         <dependency>
79             <groupId>org.jacorb</groupId>
80             <artifactId>jacorb-omgapi</artifactId>
81             <version>3.8</version>
82             <scope>test</scope>
83         </dependency>
84         <!-- GRPC Dependencies -->
85         <dependency>
86             <groupId>io.grpc</groupId>
87             <artifactId>grpc-netty</artifactId>
88         </dependency>
89         <dependency>
90             <groupId>io.grpc</groupId>
91             <artifactId>grpc-protobuf</artifactId>
92         </dependency>
93         <dependency>
94             <groupId>io.grpc</groupId>
95             <artifactId>grpc-stub</artifactId>
96         </dependency>
97         <dependency>
98             <groupId>io.grpc</groupId>
99             <artifactId>grpc-netty-shaded</artifactId>
100         </dependency>
101         <dependency>
102             <groupId>io.grpc</groupId>
103             <artifactId>grpc-grpclb</artifactId>
104         </dependency>
105         <dependency>
106             <groupId>com.google.protobuf</groupId>
107             <artifactId>protobuf-java</artifactId>
108         </dependency>
109         <dependency>
110             <groupId>com.google.protobuf</groupId>
111             <artifactId>protobuf-java-util</artifactId>
112         </dependency>
113         <dependency>
114             <groupId>io.grpc</groupId>
115             <artifactId>grpc-testing</artifactId>
116             <scope>test</scope>
117         </dependency>
118         <dependency>
119             <groupId>org.onap.ccsdk.cds.blueprintsprocessor.modules</groupId>
120             <artifactId>blueprint-proto</artifactId>
121         </dependency>
122         <dependency>
123             <groupId>ch.qos.logback</groupId>
124             <artifactId>logback-classic</artifactId>
125         </dependency>
126     </dependencies>
127 </project>