Merge "Improving CMD-exec err msgs/handling."
[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.0.0-SNAPSHOT</version>
27     </parent>
28
29     <groupId>org.onap.ccsdk.cds.sdclistener</groupId>
30     <artifactId>parent</artifactId>
31     <packaging>pom</packaging>
32
33     <name>SDC Listener Parent</name>
34     <description>SDC Listener Parent</description>
35
36     <properties>
37         <eelf.version>1.0.0</eelf.version>
38         <guava.version>27.0.1-jre</guava.version>
39         <onap.logger.slf4j>1.2.2</onap.logger.slf4j>
40         <powermock.version>1.7.4</powermock.version>
41         <mockk.version>1.9</mockk.version>
42         <dmaap.client.version>1.1.5</dmaap.client.version>
43         <mockkserver.version>5.5.1</mockkserver.version>
44         <sdc-distribution-client.version>1.4.0</sdc-distribution-client.version>
45         <jmockit.version>1.19</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.15</version>
80             </dependency>
81
82             <dependency>
83                 <groupId>com.google.guava</groupId>
84                 <artifactId>guava</artifactId>
85                 <version>${guava.version}</version>
86             </dependency>
87
88             <!-- GRPC Dependencies -->
89             <dependency>
90                 <groupId>io.grpc</groupId>
91                 <artifactId>grpc-core</artifactId>
92                 <version>${grpc.version}</version>
93             </dependency>
94             <dependency>
95                 <groupId>io.grpc</groupId>
96                 <artifactId>grpc-netty</artifactId>
97                 <version>${grpc.version}</version>
98             </dependency>
99             <dependency>
100                 <groupId>io.grpc</groupId>
101                 <artifactId>grpc-protobuf</artifactId>
102                 <version>${grpc.version}</version>
103             </dependency>
104             <dependency>
105                 <groupId>io.grpc</groupId>
106                 <artifactId>grpc-stub</artifactId>
107                 <version>${grpc.version}</version>
108             </dependency>
109             <dependency>
110                 <groupId>io.grpc</groupId>
111                 <artifactId>grpc-netty-shaded</artifactId>
112                 <version>${grpc.version}</version>
113             </dependency>
114             <dependency>
115                 <groupId>io.grpc</groupId>
116                 <artifactId>grpc-grpclb</artifactId>
117                 <version>${grpc.version}</version>
118             </dependency>
119             <dependency>
120                 <groupId>com.google.protobuf</groupId>
121                 <artifactId>protobuf-java</artifactId>
122                 <version>${protobuff.java.utils.version}</version>
123             </dependency>
124             <dependency>
125                 <groupId>com.google.protobuf</groupId>
126                 <artifactId>protobuf-java-util</artifactId>
127                 <version>${protobuff.java.utils.version}</version>
128             </dependency>
129             <dependency>
130                 <groupId>org.onap.ccsdk.cds.blueprintsprocessor</groupId>
131                 <artifactId>blueprint-proto</artifactId>
132                 <version>${project.version}</version>
133                 <exclusions>
134                     <exclusion>
135                         <groupId>*</groupId>
136                         <artifactId>*</artifactId>
137                     </exclusion>
138                 </exclusions>
139             </dependency>
140
141             <!-- Test Dependency -->
142             <dependency>
143                 <groupId>io.grpc</groupId>
144                 <artifactId>grpc-testing</artifactId>
145                 <version>${grpc.version}</version>
146                 <scope>test</scope>
147             </dependency>
148             <dependency>
149                 <groupId>org.jmockit</groupId>
150                 <artifactId>jmockit</artifactId>
151                 <version>${jmockit.version}</version>
152                 <scope>test</scope>
153             </dependency>
154
155             <!-- SDC Distribution client dependency -->
156             <dependency>
157                 <groupId>org.onap.ccsdk.cds.sdclistener</groupId>
158                 <artifactId>application</artifactId>
159                 <version>${project.version}</version>
160             </dependency>
161             <dependency>
162                 <groupId>org.onap.sdc.sdc-distribution-client</groupId>
163                 <artifactId>sdc-distribution-client</artifactId>
164                 <version>${sdc-distribution-client.version}</version>
165             </dependency>
166         </dependencies>
167     </dependencyManagement>
168
169     <build>
170         <plugins>
171             <plugin>
172                 <groupId>org.apache.maven.plugins</groupId>
173                 <artifactId>maven-compiler-plugin</artifactId>
174                 <version>3.5.1</version>
175                 <configuration>
176                     <source>${maven.compiler.source}</source>
177                     <target>${maven.compiler.target}</target>
178                 </configuration>
179             </plugin>
180         </plugins>
181     </build>
182 </project>