Roll snapshot for Montreal
[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>sdclistener-parent</artifactId>
23         <version>1.6.0-SNAPSHOT</version>
24         <relativePath>../parent</relativePath>
25     </parent>
26
27     <artifactId>sdclistener-application</artifactId>
28     <packaging>jar</packaging>
29
30     <name>MS SDC Listener - Application</name>
31
32     <properties>
33         <protobuf.version>3.6.1</protobuf.version>
34         <project.version>${project.parent.version}</project.version>
35     </properties>
36
37     <dependencies>
38         <!-- Spring boot -->
39         <dependency>
40             <groupId>org.springframework.boot</groupId>
41             <artifactId>spring-boot-starter-webflux</artifactId>
42             <exclusions>
43                 <exclusion>
44                     <groupId>org.springframework.boot</groupId>
45                     <artifactId>spring-boot-starter-logging</artifactId>
46                 </exclusion>
47             </exclusions>
48         </dependency>
49         <dependency>
50             <groupId>org.springframework.boot</groupId>
51             <artifactId>spring-boot-starter-test</artifactId>
52             <scope>test</scope>
53         </dependency>
54         <dependency>
55             <groupId>org.junit.vintage</groupId>
56             <artifactId>junit-vintage-engine</artifactId>
57             <scope>test</scope>
58         </dependency>
59         <dependency>
60             <groupId>org.onap.ccsdk.cds.blueprintsprocessor.modules</groupId>
61             <artifactId>health-api-common</artifactId>
62             <version>${ccsdk.cds.version}</version>
63             <exclusions>
64                 <exclusion>
65                     <groupId>org.springframework.boot</groupId>
66                     <artifactId>spring-boot-starter-data-jpa</artifactId>
67                 </exclusion>
68             </exclusions>
69         </dependency>
70
71         <!-- SDC Distribution client dependency -->
72         <dependency>
73             <groupId>org.onap.sdc.sdc-distribution-client</groupId>
74             <artifactId>sdc-distribution-client</artifactId>
75             <version>${sdc-distribution-client.version}</version>
76         </dependency>
77         <dependency>
78             <groupId>org.jmockit</groupId>
79             <artifactId>jmockit</artifactId>
80             <version>${jmockit.version}</version>
81             <scope>test</scope>
82         </dependency>
83         <dependency>
84             <groupId>org.jacorb</groupId>
85             <artifactId>jacorb-omgapi</artifactId>
86             <version>3.8</version>
87             <scope>test</scope>
88         </dependency>
89         <!-- GRPC Dependencies -->
90         <dependency>
91             <groupId>io.grpc</groupId>
92             <artifactId>grpc-netty</artifactId>
93         </dependency>
94         <dependency>
95             <groupId>io.grpc</groupId>
96             <artifactId>grpc-protobuf</artifactId>
97         </dependency>
98         <dependency>
99             <groupId>io.grpc</groupId>
100             <artifactId>grpc-stub</artifactId>
101         </dependency>
102         <dependency>
103             <groupId>io.grpc</groupId>
104             <artifactId>grpc-netty-shaded</artifactId>
105         </dependency>
106         <dependency>
107             <groupId>io.grpc</groupId>
108             <artifactId>grpc-grpclb</artifactId>
109         </dependency>
110         <dependency>
111             <groupId>com.google.protobuf</groupId>
112             <artifactId>protobuf-java</artifactId>
113         </dependency>
114         <dependency>
115             <groupId>com.google.protobuf</groupId>
116             <artifactId>protobuf-java-util</artifactId>
117         </dependency>
118         <dependency>
119             <groupId>io.grpc</groupId>
120             <artifactId>grpc-testing</artifactId>
121             <scope>test</scope>
122         </dependency>
123         <dependency>
124             <groupId>org.onap.ccsdk.cds.blueprintsprocessor.modules</groupId>
125             <artifactId>blueprint-proto</artifactId>
126         </dependency>
127         <dependency>
128             <groupId>ch.qos.logback</groupId>
129             <artifactId>logback-classic</artifactId>
130         </dependency>
131         <dependency>
132             <groupId>com.github.stefanbirkner</groupId>
133             <artifactId>system-rules</artifactId>
134             <version>1.17.2</version>
135             <scope>test</scope>
136         </dependency>
137     </dependencies>
138 </project>