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