Merge "add a rest endpoint to remove resources"
[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>0.7.0-SNAPSHOT</version>
26     </parent>
27
28     <groupId>org.onap.ccsdk.cds.sdclistener</groupId>
29     <artifactId>parent</artifactId>
30     <packaging>pom</packaging>
31
32     <name>SDC Listener Parent</name>
33     <description>SDC Listener Parent</description>
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>1.4.0</sdc-distribution-client.version>
44         <jmockit.version>1.19</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.15</version>
79             </dependency>
80
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</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             <dependency>
140                 <groupId>io.projectreactor</groupId>
141                 <artifactId>reactor-core</artifactId>
142                 <version>${reactorcore.version}</version>
143             </dependency>
144
145             <!-- Test Dependency -->
146             <dependency>
147                 <groupId>io.grpc</groupId>
148                 <artifactId>grpc-testing</artifactId>
149                 <version>${grpc.version}</version>
150                 <scope>test</scope>
151             </dependency>
152             <dependency>
153                 <groupId>org.jmockit</groupId>
154                 <artifactId>jmockit</artifactId>
155                 <version>${jmockit.version}</version>
156                 <scope>test</scope>
157             </dependency>
158
159             <!-- SDC Distribution client dependency -->
160             <dependency>
161                 <groupId>org.onap.ccsdk.cds.sdclistener</groupId>
162                 <artifactId>application</artifactId>
163                 <version>${project.version}</version>
164             </dependency>
165             <dependency>
166                 <groupId>org.onap.sdc.sdc-distribution-client</groupId>
167                 <artifactId>sdc-distribution-client</artifactId>
168                 <version>${sdc-distribution-client.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-compiler-plugin</artifactId>
178                 <version>3.5.1</version>
179                 <configuration>
180                     <source>${maven.compiler.source}</source>
181                     <target>${maven.compiler.target}</target>
182                 </configuration>
183             </plugin>
184         </plugins>
185     </build>
186 </project>