Integration Test - Component Executor
[ccsdk/cds.git] / ms / cds-sdc-listener / 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
11   <parent>
12     <groupId>org.onap.ccsdk.parent</groupId>
13     <artifactId>spring-boot-1-starter-parent</artifactId>
14     <version>1.2.2-SNAPSHOT</version>
15     <relativePath/>
16   </parent>
17
18   <modelVersion>4.0.0</modelVersion>
19   <groupId>org.onap.ccsdk.cds</groupId>
20   <artifactId>cds-sdc-listener-application</artifactId>
21   <version>0.4.2-SNAPSHOT</version>
22   <name>CDS-SDC Listener Application </name>
23
24   <properties>
25     <grpc.version>1.17.1</grpc.version>
26     <protobuf.version>3.6.1</protobuf.version>
27   </properties>
28
29   <dependencies>
30     <!-- Spring boot -->
31       <dependency>
32         <groupId>org.springframework.boot</groupId>
33         <artifactId>spring-boot-starter-web</artifactId>
34       </dependency>
35       <dependency>
36         <groupId>org.springframework.boot</groupId>
37         <artifactId>spring-boot-starter-test</artifactId>
38         <scope>test</scope>
39       </dependency>
40     <dependency>
41       <groupId>org.springframework.boot</groupId>
42       <artifactId>spring-boot-devtools</artifactId>
43       <optional>true</optional>
44     </dependency>
45
46     <!-- SDC Distribution client dependency -->
47     <dependency>
48       <groupId>org.onap.sdc.sdc-distribution-client</groupId>
49       <artifactId>sdc-distribution-client</artifactId>
50       <version>1.3.0</version>
51     </dependency>
52
53     <dependency>
54       <groupId>org.jmockit</groupId>
55       <artifactId>jmockit</artifactId>
56       <version>1.19</version>
57       <scope>test</scope>
58     </dependency>
59
60     <!-- GRPC Dependencies -->
61     <dependency>
62       <groupId>io.grpc</groupId>
63       <artifactId>grpc-netty</artifactId>
64       <version>${grpc.version}</version>
65     </dependency>
66     <dependency>
67       <groupId>io.grpc</groupId>
68       <artifactId>grpc-protobuf</artifactId>
69       <version>${grpc.version}</version>
70     </dependency>
71     <dependency>
72       <groupId>io.grpc</groupId>
73       <artifactId>grpc-stub</artifactId>
74       <version>${grpc.version}</version>
75     </dependency>
76     <dependency>
77       <groupId>com.google.protobuf</groupId>
78       <artifactId>protobuf-java</artifactId>
79       <version>${protobuf.version}</version>
80     </dependency>
81     <dependency>
82       <groupId>io.grpc</groupId>
83       <artifactId>grpc-testing</artifactId>
84       <version>${grpc.version}</version>
85       <scope>test</scope>
86     </dependency>
87     <dependency>
88       <groupId>org.onap.ccsdk.cds.components</groupId>
89       <artifactId>proto-definition</artifactId>
90       <version>0.4.2-SNAPSHOT</version>
91     </dependency>
92
93     <!-- SDC Distribution client dependency -->
94     <dependency>
95       <groupId>org.onap.sdc.sdc-distribution-client</groupId>
96       <artifactId>sdc-distribution-client</artifactId>
97       <version>1.3.0</version>
98     </dependency>
99
100   </dependencies>
101
102   <build>
103     <plugins>
104       <plugin>
105         <groupId>org.springframework.boot</groupId>
106         <artifactId>spring-boot-maven-plugin</artifactId>
107         <executions>
108           <execution>
109             <id>repackage</id>
110             <goals>
111               <goal>repackage</goal>
112             </goals>
113           </execution>
114         </executions>
115       </plugin>
116     </plugins>
117   </build>
118
119 </project>