Roll snapshot for Montreal
[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 <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">
20     <modelVersion>4.0.0</modelVersion>
21
22     <parent>
23         <groupId>org.onap.ccsdk.cds</groupId>
24         <artifactId>sdclistener</artifactId>
25         <version>1.6.0-SNAPSHOT</version>
26     </parent>
27
28     <groupId>org.onap.ccsdk.cds.sdclistener</groupId>
29     <artifactId>sdclistener-parent</artifactId>
30     <packaging>pom</packaging>
31
32     <name>MS SDC Listener - Parent</name>
33
34     <properties>
35         <eelf.version>1.0.0</eelf.version>
36         <guava.version>27.0.1-jre</guava.version>
37         <onap.logger.slf4j>1.2.2</onap.logger.slf4j>
38         <powermock.version>1.7.4</powermock.version>
39         <mockk.version>1.12.8</mockk.version>
40         <dmaap.client.version>1.1.5</dmaap.client.version>
41         <mockkserver.version>5.5.1</mockkserver.version>
42         <sdc-distribution-client.version>2.0.0</sdc-distribution-client.version>
43         <kafka.version>3.3.1</kafka.version>
44         <jmockit.version>1.49</jmockit.version>
45         <reactorcore.version>3.2.6.RELEASE</reactorcore.version>
46     </properties>
47
48     <dependencyManagement>
49         <dependencies>
50             <!-- Spring Boot -->
51             <dependency>
52                 <groupId>org.springframework.boot</groupId>
53                 <artifactId>spring-boot-starter-parent</artifactId>
54                 <version>${spring.boot.version}</version>
55                 <type>pom</type>
56                 <scope>import</scope>
57             </dependency>
58
59             <!-- Common Utils Dependencies -->
60             <dependency>
61                 <groupId>org.apache.commons</groupId>
62                 <artifactId>commons-lang3</artifactId>
63                 <version>3.2.1</version>
64             </dependency>
65             <dependency>
66                 <groupId>commons-collections</groupId>
67                 <artifactId>commons-collections</artifactId>
68                 <version>3.2.2</version>
69             </dependency>
70             <dependency>
71                 <groupId>commons-io</groupId>
72                 <artifactId>commons-io</artifactId>
73                 <version>2.6</version>
74             </dependency>
75             <dependency>
76                 <groupId>org.apache.commons</groupId>
77                 <artifactId>commons-compress</artifactId>
78                 <version>1.21</version>
79             </dependency>
80         <dependency>
81                 <groupId>com.google.guava</groupId>
82                 <artifactId>guava</artifactId>
83                 <version>${guava.version}</version>
84             </dependency>
85
86             <!-- GRPC Dependencies -->
87             <dependency>
88                 <groupId>io.grpc</groupId>
89                 <artifactId>grpc-core</artifactId>
90                 <version>${grpc.version}</version>
91             </dependency>
92             <dependency>
93                 <groupId>io.grpc</groupId>
94                 <artifactId>grpc-netty</artifactId>
95                 <version>${grpc.version}</version>
96             </dependency>
97             <dependency>
98                 <groupId>io.grpc</groupId>
99                 <artifactId>grpc-protobuf</artifactId>
100                 <version>${grpc.version}</version>
101             </dependency>
102             <dependency>
103                 <groupId>io.grpc</groupId>
104                 <artifactId>grpc-stub</artifactId>
105                 <version>${grpc.version}</version>
106             </dependency>
107             <dependency>
108                 <groupId>io.grpc</groupId>
109                 <artifactId>grpc-netty-shaded</artifactId>
110                 <version>${grpc.version}</version>
111             </dependency>
112             <dependency>
113                 <groupId>io.grpc</groupId>
114                 <artifactId>grpc-grpclb</artifactId>
115                 <version>${grpc.version}</version>
116             </dependency>
117             <dependency>
118                 <groupId>com.google.protobuf</groupId>
119                 <artifactId>protobuf-java</artifactId>
120                 <version>${protobuff.java.utils.version}</version>
121             </dependency>
122             <dependency>
123                 <groupId>com.google.protobuf</groupId>
124                 <artifactId>protobuf-java-util</artifactId>
125                 <version>${protobuff.java.utils.version}</version>
126             </dependency>
127             <dependency>
128                 <groupId>org.onap.ccsdk.cds.blueprintsprocessor.modules</groupId>
129                 <artifactId>blueprint-proto</artifactId>
130                 <version>${project.version}</version>
131                 <exclusions>
132                     <exclusion>
133                         <groupId>*</groupId>
134                         <artifactId>*</artifactId>
135                     </exclusion>
136                 </exclusions>
137             </dependency>
138
139             <!-- Test Dependency -->
140             <dependency>
141                 <groupId>io.grpc</groupId>
142                 <artifactId>grpc-testing</artifactId>
143                 <version>${grpc.version}</version>
144                 <scope>test</scope>
145             </dependency>
146             <dependency>
147                 <groupId>org.jmockit</groupId>
148                 <artifactId>jmockit</artifactId>
149                 <version>${jmockit.version}</version>
150                 <scope>test</scope>
151             </dependency>
152
153             <!-- SDC Distribution client dependency -->
154             <dependency>
155                 <groupId>org.onap.ccsdk.cds.sdclistener</groupId>
156                 <artifactId>sdclistener-application</artifactId>
157                 <version>${project.version}</version>
158             </dependency>
159             <dependency>
160                 <groupId>org.onap.sdc.sdc-distribution-client</groupId>
161                 <artifactId>sdc-distribution-client</artifactId>
162                 <version>${sdc-distribution-client.version}</version>
163             </dependency>
164             <dependency>
165                 <groupId>org.apache.kafka</groupId>
166                 <artifactId>kafka-clients</artifactId>
167                 <version>${kafka.version}</version>
168             </dependency>
169         </dependencies>
170     </dependencyManagement>
171
172     <build>
173         <plugins>
174             <plugin>
175                 <groupId>org.apache.maven.plugins</groupId>
176                 <artifactId>maven-surefire-plugin</artifactId>
177                 <version>${maven-surefire-plugin.version}</version>
178                 <configuration>
179                     <!-- Sets the VM argument line used when unit tests are run. -->
180                     <argLine>-javaagent:"${settings.localRepository}"/org/jmockit/jmockit/${jmockit.version}/jmockit-${jmockit.version}.jar</argLine>
181                     <!-- Excludes integration tests when unit tests are run. -->
182                     <excludes>
183                         <exclude>**/IT*.java</exclude>
184                     </excludes>
185                 </configuration>
186             </plugin>
187         </plugins>
188     </build>
189 </project>