Updated the common module to version 1.4.5
[holmes/engine-management.git] / pom.xml
1 <?xml version="1.0" encoding="UTF-8" ?>
2 <!--
3   ~ Copyright 2017-2022 ZTE Corporation.
4   ~
5   ~ Licensed under the Apache License, Version 2.0 (the "License");
6   ~ you may not use this file except in compliance with the License.
7   ~ You may obtain a copy of the License at
8   ~
9   ~     http://www.apache.org/licenses/LICENSE-2.0
10   ~
11   ~ Unless required by applicable law or agreed to in writing, software
12   ~ distributed under the License is distributed on an "AS IS" BASIS,
13   ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14   ~ See the License for the specific language governing permissions and
15   ~ limitations under the License.
16   -->
17 <project xmlns="http://maven.apache.org/POM/4.0.0"
18          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
19          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     <parent>
22         <groupId>org.onap.oparent</groupId>
23         <artifactId>oparent</artifactId>
24         <version>3.0.0</version>
25     </parent>
26
27     <groupId>org.onap.holmes.engine-management</groupId>
28     <artifactId>holmes-engine-parent</artifactId>
29     <version>1.3.8-SNAPSHOT</version>
30     <packaging>pom</packaging>
31     <name>holmes-engine-management</name>
32     <modules>
33         <module>engine-d</module>
34         <module>engine-d-standalone</module>
35     </modules>
36
37     <properties>
38         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
39         <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
40         <maven.test.failure.ignore>false</maven.test.failure.ignore>
41
42         <finalName>${project.artifactId}-${project.version}</finalName>
43         <release.dir>${basedir}/target</release.dir>
44         <bundle.name>${project.artifactId}-${project.version}</bundle.name>
45
46         <drools.version>7.62.0.Final</drools.version>
47         <powermock.version>2.0.7</powermock.version>
48         <jacoco.version>0.8.5</jacoco.version>
49         <springboot.version>2.7.2</springboot.version>
50         <jdbi.version>3.19.0</jdbi.version>
51         <jersey.version>3.0.5</jersey.version>
52         <jakarta.ws.rs.version>3.1.0</jakarta.ws.rs.version>
53
54         <packagename>onap-holmes-engine-d</packagename>
55         <linux64id>linux64</linux64id>
56         <linux64outputdir>target/assembly/${linux64id}</linux64outputdir>
57         <version.output>target/version</version.output>
58
59         <sonar.coverage.jacoco.xmlReportPaths>
60             ${project.reporting.outputDirectory}/jacoco-ut/jacoco.xml
61         </sonar.coverage.jacoco.xmlReportPaths>
62     </properties>
63
64     <dependencyManagement>
65         <dependencies>
66             <dependency>
67                 <groupId>org.springframework.boot</groupId>
68                 <artifactId>spring-boot-dependencies</artifactId>
69                 <version>${springboot.version}</version>
70                 <type>pom</type>
71                 <scope>import</scope>
72             </dependency>
73         </dependencies>
74     </dependencyManagement>
75
76     <dependencies>
77         <dependency>
78             <groupId>org.springframework.boot</groupId>
79             <artifactId>spring-boot-starter-web</artifactId>
80             <exclusions>
81                 <exclusion>
82                     <groupId>org.springframework.boot</groupId>
83                     <artifactId>spring-boot-starter-json</artifactId>
84                 </exclusion>
85             </exclusions>
86         </dependency>
87         <dependency>
88             <groupId>org.springframework.boot</groupId>
89             <artifactId>spring-boot-autoconfigure</artifactId>
90         </dependency>
91         <dependency>
92             <groupId>org.jdbi</groupId>
93             <artifactId>jdbi3-postgres</artifactId>
94             <version>${jdbi.version}</version>
95         </dependency>
96         <dependency>
97             <groupId>org.jdbi</groupId>
98             <artifactId>jdbi3-sqlobject</artifactId>
99             <version>${jdbi.version}</version>
100         </dependency>
101         <dependency>
102             <groupId>org.postgresql</groupId>
103             <artifactId>postgresql</artifactId>
104             <version>42.5.1</version>
105         </dependency>
106         <dependency>
107             <groupId>org.projectlombok</groupId>
108             <artifactId>lombok</artifactId>
109             <version>1.18.16</version>
110         </dependency>
111         <dependency>
112             <groupId>org.javassist</groupId>
113             <artifactId>javassist</artifactId>
114             <version>3.24.1-GA</version>
115         </dependency>
116         <dependency>
117             <groupId>commons-collections</groupId>
118             <artifactId>commons-collections</artifactId>
119             <version>3.2.2</version>
120         </dependency>
121         <dependency>
122             <groupId>org.onap.msb.java-sdk</groupId>
123             <artifactId>msb-java-sdk</artifactId>
124             <version>1.2.5</version>
125             <exclusions>
126                 <exclusion>
127                     <groupId>ch.qos.logback</groupId>
128                     <artifactId>logback-classic</artifactId>
129                 </exclusion>
130                 <exclusion>
131                     <groupId>com.fasterxml.jackson.core</groupId>
132                     <artifactId>jackson-databind</artifactId>
133                 </exclusion>
134                 <exclusion>
135                     <groupId>com.fasterxml.jackson.core</groupId>
136                     <artifactId>jackson-core</artifactId>
137                 </exclusion>
138                 <exclusion>
139                     <groupId>org.slf4j</groupId>
140                     <artifactId>slf4j-api</artifactId>
141                 </exclusion>
142                 <exclusion>
143                     <groupId>org.eclipse.jetty</groupId>
144                     <artifactId>jetty-server</artifactId>
145                 </exclusion>
146                 <exclusion>
147                     <groupId>com.squareup.okhttp3</groupId>
148                     <artifactId>okhttp</artifactId>
149                 </exclusion>
150                 <exclusion>
151                     <groupId>com.squareup.retrofit2</groupId>
152                     <artifactId>retrofit</artifactId>
153                 </exclusion>
154                 <exclusion>
155                     <groupId>org.apache.httpcomponents</groupId>
156                     <artifactId>httpclient</artifactId>
157                 </exclusion>
158             </exclusions>
159         </dependency>
160         <dependency>
161             <groupId>org.onap.holmes.common</groupId>
162             <artifactId>holmes-actions</artifactId>
163             <version>1.4.5</version>
164             <exclusions>
165                 <exclusion>
166                     <groupId>io.swagger</groupId>
167                     <artifactId>swagger-jersey2-jaxrs</artifactId>
168                 </exclusion>
169                 <exclusion>
170                     <groupId>org.slf4j</groupId>
171                     <artifactId>slf4j-api</artifactId>
172                 </exclusion>
173             </exclusions>
174         </dependency>
175         <dependency>
176             <groupId>jakarta.ws.rs</groupId>
177             <artifactId>jakarta.ws.rs-api</artifactId>
178             <version>${jakarta.ws.rs.version}</version>
179         </dependency>
180         <dependency>
181             <groupId>jakarta.xml.bind</groupId>
182             <artifactId>jakarta.xml.bind-api</artifactId>
183             <version>4.0.0</version>
184         </dependency>
185         <dependency>
186             <groupId>javax.xml.bind</groupId>
187             <artifactId>jaxb-api</artifactId>
188             <version>2.3.1</version>
189         </dependency>
190
191         <dependency>
192             <groupId>org.drools</groupId>
193             <artifactId>drools-core</artifactId>
194             <version>${drools.version}</version>
195             <exclusions>
196                 <exclusion>
197                     <groupId>org.slf4j</groupId>
198                     <artifactId>slf4j-api</artifactId>
199                 </exclusion>
200             </exclusions>
201         </dependency>
202         <dependency>
203             <groupId>org.drools</groupId>
204             <artifactId>drools-compiler</artifactId>
205             <version>${drools.version}</version>
206             <exclusions>
207                 <exclusion>
208                     <groupId>org.eclipse.jdt.core.compiler</groupId>
209                     <artifactId>ecj</artifactId>
210                 </exclusion>
211                 <exclusion>
212                     <groupId>org.slf4j</groupId>
213                     <artifactId>slf4j-api</artifactId>
214                 </exclusion>
215                 <exclusion>
216                     <groupId>com.thoughtworks.xstream</groupId>
217                     <artifactId>xstream</artifactId>
218                 </exclusion>
219             </exclusions>
220         </dependency>
221         <dependency>
222             <groupId>org.eclipse.jdt.core.compiler</groupId>
223             <artifactId>ecj</artifactId>
224             <version>4.5.1</version>
225         </dependency>
226         <dependency>
227             <groupId>org.drools</groupId>
228             <artifactId>drools-templates</artifactId>
229             <version>${drools.version}</version>
230         </dependency>
231         <dependency>
232             <groupId>com.squareup.okhttp3</groupId>
233             <artifactId>okhttp</artifactId>
234             <version>4.10.0</version>
235         </dependency>
236         <dependency>
237             <groupId>io.swagger</groupId>
238             <artifactId>swagger-jersey2-jaxrs</artifactId>
239             <version>1.5.3</version>
240             <scope>provided</scope>
241             <exclusions>
242                 <exclusion>
243                     <groupId>com.fasterxml.jackson.core</groupId>
244                     <artifactId>jackson-core</artifactId>
245                 </exclusion>
246                 <exclusion>
247                     <groupId>com.fasterxml.jackson.core</groupId>
248                     <artifactId>jackson-databind</artifactId>
249                 </exclusion>
250                 <exclusion>
251                     <groupId>javax.validation</groupId>
252                     <artifactId>validation-api</artifactId>
253                 </exclusion>
254                 <exclusion>
255                     <groupId>org.glassfish.jersey.containers</groupId>
256                     <artifactId>jersey-container-servlet-core</artifactId>
257                 </exclusion>
258             </exclusions>
259         </dependency>
260         <dependency>
261             <groupId>org.slf4j</groupId>
262             <artifactId>slf4j-api</artifactId>
263             <version>1.7.25</version>
264         </dependency>
265         <dependency>
266             <groupId>com.google.code.gson</groupId>
267             <artifactId>gson</artifactId>
268             <version>2.10</version>
269         </dependency>
270         <dependency>
271             <groupId>com.thoughtworks.xstream</groupId>
272             <artifactId>xstream</artifactId>
273             <version>1.4.19</version>
274         </dependency>
275         <dependency>
276             <groupId>org.glassfish.jersey.inject</groupId>
277             <artifactId>jersey-hk2</artifactId>
278             <version>${jersey.version}</version>
279         </dependency>
280         <dependency>
281             <groupId>org.glassfish.jersey.media</groupId>
282             <artifactId>jersey-media-json-jackson</artifactId>
283             <version>${jersey.version}</version>
284         </dependency>
285         <dependency>
286             <groupId>org.glassfish.jersey.core</groupId>
287             <artifactId>jersey-common</artifactId>
288             <version>${jersey.version}</version>
289         </dependency>
290         <dependency>
291             <groupId>org.glassfish.jersey.core</groupId>
292             <artifactId>jersey-client</artifactId>
293             <version>${jersey.version}</version>
294         </dependency>
295         <dependency>
296             <groupId>org.glassfish.jersey.core</groupId>
297             <artifactId>jersey-server</artifactId>
298             <version>${jersey.version}</version>
299         </dependency>
300         <dependency>
301             <groupId>org.glassfish.jersey.containers</groupId>
302             <artifactId>jersey-container-servlet-core</artifactId>
303             <version>${jersey.version}</version>
304         </dependency>
305         <dependency>
306             <groupId>org.glassfish.jersey.ext</groupId>
307             <artifactId>jersey-entity-filtering</artifactId>
308             <version>${jersey.version}</version>
309         </dependency>
310         <dependency>
311             <groupId>jakarta.activation</groupId>
312             <artifactId>jakarta.activation-api</artifactId>
313             <version>2.1.0</version>
314         </dependency>
315         <dependency>
316             <groupId>jakarta.annotation</groupId>
317             <artifactId>jakarta.annotation-api</artifactId>
318             <version>2.1.1</version>
319         </dependency>
320         <dependency>
321             <groupId>javax.annotation</groupId>
322             <artifactId>javax.annotation-api</artifactId>
323             <version>1.3.2</version>
324             <scope>provided</scope>
325         </dependency>
326         <dependency>
327             <groupId>org.hamcrest</groupId>
328             <artifactId>hamcrest-core</artifactId>
329             <version>1.3</version>
330             <scope>test</scope>
331         </dependency>
332
333         <!-- Do NOT remove org.reflections:reflections. Otherwise, the docker will fail to start. -->
334         <dependency>
335             <groupId>org.reflections</groupId>
336             <artifactId>reflections</artifactId>
337             <version>0.9.9</version>
338         </dependency>
339
340         <!-- UNIT TEST RELATED DEPENDENCIES -->
341         <dependency>
342             <groupId>org.powermock</groupId>
343             <artifactId>powermock-classloading-xstream</artifactId>
344             <version>${powermock.version}</version>
345             <scope>test</scope>
346             <exclusions>
347                 <exclusion>
348                     <artifactId>xstream</artifactId>
349                     <groupId>com.thoughtworks.xstream</groupId>
350                 </exclusion>
351             </exclusions>
352         </dependency>
353         <dependency>
354             <groupId>org.powermock</groupId>
355             <artifactId>powermock-core</artifactId>
356             <version>${powermock.version}</version>
357             <scope>test</scope>
358         </dependency>
359         <dependency>
360             <groupId>org.powermock</groupId>
361             <artifactId>powermock-module-junit4</artifactId>
362             <version>${powermock.version}</version>
363             <scope>test</scope>
364         </dependency>
365         <dependency>
366             <groupId>org.powermock</groupId>
367             <artifactId>powermock-module-junit4-rule</artifactId>
368             <version>${powermock.version}</version>
369             <scope>test</scope>
370         </dependency>
371         <dependency>
372             <groupId>org.powermock</groupId>
373             <artifactId>powermock-api-mockito2</artifactId>
374             <version>${powermock.version}</version>
375             <scope>test</scope>
376         </dependency>
377         <dependency>
378             <groupId>org.mockito</groupId>
379             <artifactId>mockito-core</artifactId>
380             <version>2.28.2</version>
381             <scope>test</scope>
382         </dependency>
383         <dependency>
384             <groupId>org.powermock</groupId>
385             <artifactId>powermock-api-support</artifactId>
386             <version>2.0.7</version>
387             <scope>test</scope>
388         </dependency>
389         <dependency>
390             <groupId>org.powermock</groupId>
391             <artifactId>powermock-api-easymock</artifactId>
392             <version>${powermock.version}</version>
393             <scope>test</scope>
394         </dependency>
395         <dependency>
396             <groupId>org.easymock</groupId>
397             <artifactId>easymock</artifactId>
398             <version>4.2</version>
399             <scope>test</scope>
400         </dependency>
401         <dependency>
402             <groupId>junit</groupId>
403             <artifactId>junit</artifactId>
404             <version>4.13.2</version>
405             <scope>test</scope>
406         </dependency>
407     </dependencies>
408 </project>
409