Update vulnerable package dependencies
[sdc.git] / catalog-dao / pom.xml
1 <!--
2 ============LICENSE_START=======================================================
3 SDC
4 ================================================================================
5 Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
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 ============LICENSE_END=========================================================
19 Modifications copyright (c) 2018 Nokia
20 ================================================================================
21 -->
22 <project xmlns="http://maven.apache.org/POM/4.0.0"
23   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
24   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
25   <modelVersion>4.0.0</modelVersion>
26
27   <groupId>org.openecomp.sdc.be</groupId>
28   <artifactId>catalog-dao</artifactId>
29
30   <parent>
31     <groupId>org.openecomp.sdc</groupId>
32     <artifactId>sdc-main</artifactId>
33     <version>1.9.0-SNAPSHOT</version>
34   </parent>
35
36   <dependencies>
37
38     <!-- Common of SDC -->
39     <dependency>
40       <groupId>org.openecomp.sdc</groupId>
41       <artifactId>common-app-api</artifactId>
42       <version>${project.version}</version>
43       <scope>provided</scope>
44     </dependency>
45
46     <dependency>
47       <groupId>org.openecomp.sdc.be</groupId>
48       <artifactId>common-be</artifactId>
49       <version>${project.version}</version>
50       <scope>provided</scope>
51     </dependency>
52
53     <dependency>
54       <groupId>ch.qos.logback</groupId>
55       <artifactId>logback-classic</artifactId>
56       <version>${logback.version}</version>
57       <scope>provided</scope>
58     </dependency>
59
60     <!-- SPRING -->
61     <dependency>
62       <groupId>org.springframework</groupId>
63       <artifactId>spring-context</artifactId>
64       <version>${spring.version}</version>
65       <scope>provided</scope>
66     </dependency>
67
68     <dependency>
69       <groupId>org.springframework</groupId>
70       <artifactId>spring-core</artifactId>
71       <version>${spring.version}</version>
72       <scope>provided</scope>
73     </dependency>
74
75     <dependency>
76       <groupId>org.springframework</groupId>
77       <artifactId>spring-context-support</artifactId>
78       <version>${spring.version}</version>
79       <scope>provided</scope>
80     </dependency>
81
82     <dependency>
83       <groupId>org.springframework</groupId>
84       <artifactId>spring-beans</artifactId>
85       <version>${spring.version}</version>
86       <scope>provided</scope>
87     </dependency>
88
89     <dependency>
90       <groupId>org.aspectj</groupId>
91       <artifactId>aspectjrt</artifactId>
92       <version>${aspectj.version}</version>
93     </dependency>
94
95     <dependency>
96       <groupId>org.aspectj</groupId>
97       <artifactId>aspectjweaver</artifactId>
98       <version>${aspectj.version}</version>
99     </dependency>
100
101     <dependency>
102       <groupId>org.springframework</groupId>
103       <artifactId>spring-aop</artifactId>
104       <version>${spring.version}</version>
105     </dependency>
106
107     <dependency>
108       <groupId>org.springframework</groupId>
109       <artifactId>spring-tx</artifactId>
110       <version>${spring.version}</version>
111     </dependency>
112
113     <dependency>
114       <groupId>com.fasterxml.jackson.core</groupId>
115       <artifactId>jackson-databind</artifactId>
116       <version>${jackson.version}</version>
117       <exclusions>
118         <exclusion>
119           <groupId>com.fasterxml.jackson.core</groupId>
120           <artifactId>jackson-core</artifactId>
121         </exclusion>
122       </exclusions>
123     </dependency>
124
125     <dependency>
126       <groupId>com.fasterxml.jackson.core</groupId>
127       <artifactId>jackson-core</artifactId>
128       <version>${jackson.version}</version>
129     </dependency>
130
131     <dependency>
132       <groupId>com.googlecode.json-simple</groupId>
133       <artifactId>json-simple</artifactId>
134       <version>${json-simple.version}</version>
135       <scope>provided</scope>
136     </dependency>
137
138     <dependency>
139       <groupId>org.apache.lucene</groupId>
140       <artifactId>lucene-regex</artifactId>
141       <version>${regex.version}</version>
142     </dependency>
143
144     <dependency>
145       <groupId>org.jmockit</groupId>
146       <artifactId>jmockit</artifactId>
147       <scope>test</scope>
148     </dependency>
149
150     <dependency>
151       <groupId>com.google.code.bean-matchers</groupId>
152       <artifactId>bean-matchers</artifactId>
153       <version>${bean-matchers.version}</version>
154       <scope>test</scope>
155     </dependency>
156
157     <dependency>
158       <groupId>org.yaml</groupId>
159       <artifactId>snakeyaml</artifactId>
160       <version>${snakeyaml.version}</version>
161       <scope>provided</scope>
162     </dependency>
163
164     <dependency>
165       <groupId>com.google.code.gson</groupId>
166       <artifactId>gson</artifactId>
167       <version>${gson.version}</version>
168       <scope>provided</scope>
169     </dependency>
170
171     <dependency>
172       <groupId>org.functionaljava</groupId>
173       <artifactId>functionaljava</artifactId>
174       <version>${functionaljava.version}</version>
175       <scope>provided</scope>
176     </dependency>
177
178     <!-- http client -->
179     <dependency>
180       <groupId>org.apache.httpcomponents</groupId>
181       <artifactId>httpclient</artifactId>
182       <version>${httpclient.version}</version>
183       <scope>provided</scope>
184     </dependency>
185
186     <dependency>
187       <groupId>org.apache.httpcomponents</groupId>
188       <artifactId>httpcore</artifactId>
189       <version>${httpcore.version}</version>
190       <scope>provided</scope>
191     </dependency>
192
193     <dependency>
194       <groupId>com.google.guava</groupId>
195       <artifactId>guava</artifactId>
196       <version>${guava.version}</version>
197       <scope>provided</scope>
198     </dependency>
199
200     <!-- TEST -->
201     <dependency>
202       <groupId>org.assertj</groupId>
203       <artifactId>assertj-core</artifactId>
204       <scope>test</scope>
205     </dependency>
206
207     <dependency>
208       <groupId>org.springframework</groupId>
209       <artifactId>spring-test</artifactId>
210       <version>${spring.version}</version>
211       <scope>test</scope>
212     </dependency>
213
214     <dependency>
215       <groupId>org.junit.jupiter</groupId>
216       <artifactId>junit-jupiter</artifactId>
217       <version>${junitJupiter.version}</version>
218       <scope>test</scope>
219     </dependency>
220
221     <dependency>
222       <groupId>org.mockito</groupId>
223       <artifactId>mockito-junit-jupiter</artifactId>
224       <version>${mockitoJupiter.version}</version>
225       <scope>test</scope>
226     </dependency>
227
228     <dependency>
229       <groupId>org.apache.commons</groupId>
230       <artifactId>commons-jci-core</artifactId>
231       <version>${commons-jci-core.version}</version>
232       <scope>test</scope>
233       <exclusions>
234         <exclusion>
235           <groupId>commons-io</groupId>
236           <artifactId>commons-io</artifactId>
237         </exclusion>
238       </exclusions>
239     </dependency>
240
241     <dependency>
242       <groupId>org.springframework</groupId>
243       <artifactId>spring-expression</artifactId>
244       <version>${spring.version}</version>
245       <scope>test</scope>
246     </dependency>
247
248     <dependency>
249       <groupId>org.janusgraph</groupId>
250       <artifactId>janusgraph-core</artifactId>
251       <version>${janusgraph.version}</version>
252       <scope>provided</scope>
253       <exclusions>
254         <exclusion>
255           <artifactId>gremlin-groovy</artifactId>
256           <groupId>org.apache.tinkerpop</groupId>
257         </exclusion>
258         <exclusion>
259           <groupId>org.json</groupId>
260           <artifactId>json</artifactId>
261         </exclusion>
262         <exclusion>
263           <artifactId>slf4j-log4j12</artifactId>
264           <groupId>org.slf4j</groupId>
265         </exclusion>
266         <exclusion>
267           <artifactId>commons-collections</artifactId>
268           <groupId>commons-collections</groupId>
269         </exclusion>
270         <exclusion>
271           <artifactId>groovy</artifactId>
272           <groupId>org.codehaus.groovy</groupId>
273         </exclusion>
274         <exclusion>
275           <groupId>commons-io</groupId>
276           <artifactId>commons-io</artifactId>
277         </exclusion>
278       </exclusions>
279     </dependency>
280
281     <dependency>
282       <groupId>org.janusgraph</groupId>
283       <artifactId>janusgraph-cassandra</artifactId>
284       <version>${janusgraph.version}</version>
285       <scope>provided</scope>
286       <exclusions>
287         <exclusion>
288           <groupId>org.slf4j</groupId>
289           <artifactId>slf4j-log4j12</artifactId>
290         </exclusion>
291       </exclusions>
292     </dependency>
293
294     <dependency>
295       <groupId>org.apache.commons</groupId>
296       <artifactId>commons-lang3</artifactId>
297       <version>${lang3.version}</version>
298       <scope>provided</scope>
299     </dependency>
300
301     <!-- CASSANDRA -->
302     <dependency>
303       <groupId>com.datastax.cassandra</groupId>
304       <artifactId>cassandra-driver-core</artifactId>
305       <version>${cassandra.driver.version}</version>
306       <scope>provided</scope>
307       <exclusions>
308         <exclusion>
309           <groupId>io.netty</groupId>
310           <artifactId>netty-handler</artifactId>
311         </exclusion>
312       </exclusions>
313     </dependency>
314     <dependency>
315       <groupId>com.datastax.cassandra</groupId>
316       <artifactId>cassandra-driver-mapping</artifactId>
317       <version>${cassandra.driver.version}</version>
318       <scope>provided</scope>
319     </dependency>
320     <dependency>
321       <groupId>com.datastax.oss</groupId>
322       <artifactId>java-driver-core</artifactId>
323       <version>${java.driver.core.version}</version>
324       <exclusions>
325         <exclusion>
326           <groupId>org.apache.tinkerpop</groupId>
327           <artifactId>gremlin-driver</artifactId>
328         </exclusion>
329       </exclusions>
330     </dependency>
331     <dependency>
332       <groupId>org.cassandraunit</groupId>
333       <artifactId>cassandra-unit</artifactId>
334       <version>${cassandra.unit.version}</version>
335       <scope>test</scope>
336       <exclusions>
337         <exclusion>
338           <groupId>org.apache.cassandra</groupId>
339           <artifactId>cassandra-all</artifactId>
340         </exclusion>
341         <exclusion>
342           <groupId>org.apache.thrift</groupId>
343           <artifactId>libthrift</artifactId>
344         </exclusion>
345       </exclusions>
346     </dependency>
347     <dependency>
348       <groupId>org.apache.cassandra</groupId>
349       <artifactId>cassandra-all</artifactId>
350       <version>3.11.3</version>
351       <scope>test</scope>
352     </dependency>
353     <!-- CASSANDRA END -->
354
355     <dependency>
356       <groupId>org.codehaus.groovy</groupId>
357       <artifactId>groovy</artifactId>
358     </dependency>
359       <dependency>
360           <groupId>org.togglz</groupId>
361           <artifactId>togglz-testing</artifactId>
362           <version>${togglz.version}</version>
363           <scope>test</scope>
364       </dependency>
365   </dependencies>
366
367   <build>
368     <plugins>
369       <plugin>
370         <groupId>org.apache.maven.plugins</groupId>
371         <artifactId>maven-surefire-plugin</artifactId>
372         <configuration>
373           <forkCount>1</forkCount>
374         </configuration>
375       </plugin>
376     </plugins>
377     <pluginManagement>
378       <plugins>
379         <!--This plugin's configuration is used to store Eclipse m2e settings
380           only. It has no influence on the Maven build itself. -->
381         <plugin>
382           <groupId>org.eclipse.m2e</groupId>
383           <artifactId>lifecycle-mapping</artifactId>
384           <version>1.0.0</version>
385           <configuration>
386             <lifecycleMappingMetadata>
387               <pluginExecutions>
388                 <pluginExecution>
389                   <pluginExecutionFilter>
390                     <groupId>fr.fastconnect</groupId>
391                     <artifactId>plantuml-maven-plugin</artifactId>
392                     <versionRange>[1.0.0,)</versionRange>
393                     <goals>
394                       <goal>plant</goal>
395                     </goals>
396                   </pluginExecutionFilter>
397                   <action>
398                     <ignore/>
399                   </action>
400                 </pluginExecution>
401               </pluginExecutions>
402             </lifecycleMappingMetadata>
403           </configuration>
404         </plugin>
405         <plugin>
406           <groupId>com.github.sylvainlaurent.maven</groupId>
407           <artifactId>yaml-json-validator-maven-plugin</artifactId>
408           <executions>
409             <execution>
410               <id>validate</id>
411               <phase>validate</phase>
412               <goals>
413                 <goal>validate</goal>
414               </goals>
415               <configuration>
416                 <validationSets>
417                   <validationSet>
418                     <includes>
419                       <include>src/main/resources/**/*.y*ml</include>
420                       <include>src/test/resources/**/*.y*ml</include>
421                     </includes>
422                   </validationSet>
423                   <validationSet>
424                     <includes>
425                       <include>src/main/resources/**/*.json</include>
426                       <include>src/test/resources/**/*.json</include>
427                     </includes>
428                   </validationSet>
429                 </validationSets>
430                 <skip>${skipYamlJsonValidator}</skip>
431               </configuration>
432             </execution>
433           </executions>
434         </plugin>
435       </plugins>
436     </pluginManagement>
437
438   </build>
439 </project>