[SDC-DIST] Upgrade sdc-distro-client to v 2.0.0
[ccsdk/cds.git] / ms / sdclistener / parent / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3   ~  Copyright © 2017-2018 AT&T Intellectual Property.
4   ~
5   ~  Modifications Copyright © 2018 - 2019 IBM, Bell Canada
6   ~
7   ~  Licensed under the Apache License, Version 2.0 (the "License");
8   ~  you may not use this file except in compliance with the License.
9   ~  You may obtain a copy of the License at
10   ~
11   ~      http://www.apache.org/licenses/LICENSE-2.0
12   ~
13   ~  Unless required by applicable law or agreed to in writing, software
14   ~  distributed under the License is distributed on an "AS IS" BASIS,
15   ~  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16   ~  See the License for the specific language governing permissions and
17   ~  limitations under the License.
18   -->
19
20 <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">
21     <modelVersion>4.0.0</modelVersion>
22
23     <parent>
24         <groupId>org.onap.ccsdk.cds</groupId>
25         <artifactId>sdclistener</artifactId>
26         <version>1.5.0-SNAPSHOT</version>
27     </parent>
28
29     <groupId>org.onap.ccsdk.cds.sdclistener</groupId>
30     <artifactId>sdclistener-parent</artifactId>
31     <packaging>pom</packaging>
32
33     <name>MS SDC Listener - Parent</name>
34
35     <properties>
36         <eelf.version>1.0.0</eelf.version>
37         <guava.version>27.0.1-jre</guava.version>
38         <onap.logger.slf4j>1.2.2</onap.logger.slf4j>
39         <powermock.version>1.7.4</powermock.version>
40         <mockk.version>1.9</mockk.version>
41         <dmaap.client.version>1.1.5</dmaap.client.version>
42         <mockkserver.version>5.5.1</mockkserver.version>
43         <sdc-distribution-client.version>2.0.0</sdc-distribution-client.version>
44         <kafka.version>3.3.1</kafka.version>
45         <jmockit.version>1.49</jmockit.version>
46         <reactorcore.version>3.2.6.RELEASE</reactorcore.version>
47     </properties>
48
49     <dependencyManagement>
50         <dependencies>
51             <!-- Spring Boot -->
52             <dependency>
53                 <groupId>org.springframework.boot</groupId>
54                 <artifactId>spring-boot-starter-parent</artifactId>
55                 <version>${spring.boot.version}</version>
56                 <type>pom</type>
57                 <scope>import</scope>
58             </dependency>
59
60             <!-- Common Utils Dependencies -->
61             <dependency>
62                 <groupId>org.apache.commons</groupId>
63                 <artifactId>commons-lang3</artifactId>
64                 <version>3.2.1</version>
65             </dependency>
66             <dependency>
67                 <groupId>commons-collections</groupId>
68                 <artifactId>commons-collections</artifactId>
69                 <version>3.2.2</version>
70             </dependency>
71             <dependency>
72                 <groupId>commons-io</groupId>
73                 <artifactId>commons-io</artifactId>
74                 <version>2.6</version>
75             </dependency>
76             <dependency>
77                 <groupId>org.apache.commons</groupId>
78                 <artifactId>commons-compress</artifactId>
79                 <version>1.21</version>
80             </dependency>
81         <dependency>
82                 <groupId>com.google.guava</groupId>
83                 <artifactId>guava</artifactId>
84                 <version>${guava.version}</version>
85             </dependency>
86
87             <!-- GRPC Dependencies -->
88             <dependency>
89                 <groupId>io.grpc</groupId>
90                 <artifactId>grpc-core</artifactId>
91                 <version>${grpc.version}</version>
92             </dependency>
93             <dependency>
94                 <groupId>io.grpc</groupId>
95                 <artifactId>grpc-netty</artifactId>
96                 <version>${grpc.version}</version>
97             </dependency>
98             <dependency>
99                 <groupId>io.grpc</groupId>
100                 <artifactId>grpc-protobuf</artifactId>
101                 <version>${grpc.version}</version>
102             </dependency>
103             <dependency>
104                 <groupId>io.grpc</groupId>
105                 <artifactId>grpc-stub</artifactId>
106                 <version>${grpc.version}</version>
107             </dependency>
108             <dependency>
109                 <groupId>io.grpc</groupId>
110                 <artifactId>grpc-netty-shaded</artifactId>
111                 <version>${grpc.version}</version>
112             </dependency>
113             <dependency>
114                 <groupId>io.grpc</groupId>
115                 <artifactId>grpc-grpclb</artifactId>
116                 <version>${grpc.version}</version>
117             </dependency>
118             <dependency>
119                 <groupId>com.google.protobuf</groupId>
120                 <artifactId>protobuf-java</artifactId>
121                 <version>${protobuff.java.utils.version}</version>
122             </dependency>
123             <dependency>
124                 <groupId>com.google.protobuf</groupId>
125                 <artifactId>protobuf-java-util</artifactId>
126                 <version>${protobuff.java.utils.version}</version>
127             </dependency>
128             <dependency>
129                 <groupId>org.onap.ccsdk.cds.blueprintsprocessor.modules</groupId>
130                 <artifactId>blueprint-proto</artifactId>
131                 <version>${project.version}</version>
132                 <exclusions>
133                     <exclusion>
134                         <groupId>*</groupId>
135                         <artifactId>*</artifactId>
136                     </exclusion>
137                 </exclusions>
138             </dependency>
139
140             <!-- Test Dependency -->
141             <dependency>
142                 <groupId>io.grpc</groupId>
143                 <artifactId>grpc-testing</artifactId>
144                 <version>${grpc.version}</version>
145                 <scope>test</scope>
146             </dependency>
147             <dependency>
148                 <groupId>org.jmockit</groupId>
149                 <artifactId>jmockit</artifactId>
150                 <version>${jmockit.version}</version>
151                 <scope>test</scope>
152             </dependency>
153
154             <!-- SDC Distribution client dependency -->
155             <dependency>
156                 <groupId>org.onap.ccsdk.cds.sdclistener</groupId>
157                 <artifactId>sdclistener-application</artifactId>
158                 <version>${project.version}</version>
159             </dependency>
160             <dependency>
161                 <groupId>org.onap.sdc.sdc-distribution-client</groupId>
162                 <artifactId>sdc-distribution-client</artifactId>
163                 <version>${sdc-distribution-client.version}</version>
164             </dependency>
165             <dependency>
166                 <groupId>org.apache.kafka</groupId>
167                 <artifactId>kafka-clients</artifactId>
168                 <version>${kafka.version}</version>
169             </dependency>
170         </dependencies>
171     </dependencyManagement>
172
173     <build>
174         <plugins>
175             <plugin>
176                 <groupId>org.apache.maven.plugins</groupId>
177                 <artifactId>maven-surefire-plugin</artifactId>
178                 <version>${maven-surefire-plugin.version}</version>
179                 <configuration>
180                     <!-- Sets the VM argument line used when unit tests are run. -->
181                     <argLine>-javaagent:"${settings.localRepository}"/org/jmockit/jmockit/${jmockit.version}/jmockit-${jmockit.version}.jar</argLine>
182                     <!-- Excludes integration tests when unit tests are run. -->
183                     <excludes>
184                         <exclude>**/IT*.java</exclude>
185                     </excludes>
186                 </configuration>
187             </plugin>
188         </plugins>
189     </build>
190 </project>