Remove vulnerable dependency
[sdc.git] / catalog-model / pom.xml
1 <project xmlns="http://maven.apache.org/POM/4.0.0"
2     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4
5     <modelVersion>4.0.0</modelVersion>
6
7     <groupId>org.openecomp.sdc.be</groupId>
8     <artifactId>catalog-model</artifactId>
9
10     <parent>
11         <groupId>org.openecomp.sdc</groupId>
12         <artifactId>sdc-main</artifactId>
13         <version>1.11.8-SNAPSHOT</version>
14     </parent>
15
16     <properties>
17         <awaitility.version>4.0.3</awaitility.version>
18     </properties>
19
20     <dependencies>
21         <dependency>
22             <groupId>com.fasterxml.jackson.core</groupId>
23             <artifactId>jackson-core</artifactId>
24             <version>${jackson.version}</version>
25         </dependency>
26         <dependency>
27             <groupId>com.fasterxml.jackson.core</groupId>
28             <artifactId>jackson-annotations</artifactId>
29             <version>${jackson.version}</version>
30         </dependency>
31
32         <dependency>
33             <groupId>com.fasterxml.jackson.core</groupId>
34             <artifactId>jackson-databind</artifactId>
35             <version>${jackson.version}</version>
36         </dependency>
37         <!-- Common of SDC -->
38         <dependency>
39             <groupId>org.openecomp.sdc</groupId>
40             <artifactId>common-app-api</artifactId>
41             <version>${project.version}</version>
42             <scope>provided</scope>
43             <exclusions>
44                 <exclusion>
45                     <groupId>com.fasterxml.jackson.core</groupId>
46                     <artifactId>jackson-core</artifactId>
47                 </exclusion>
48                 <exclusion>
49                     <groupId>org.apache.httpcomponents</groupId>
50                     <artifactId>httpcore</artifactId>
51                 </exclusion>
52                 <exclusion>
53                     <groupId>org.functionaljava</groupId>
54                     <artifactId>functionaljava</artifactId>
55                 </exclusion>
56             </exclusions>
57         </dependency>
58
59         <dependency>
60             <groupId>org.openecomp.sdc.be</groupId>
61             <artifactId>common-be</artifactId>
62             <version>${project.version}</version>
63             <scope>provided</scope>
64             <exclusions>
65                 <exclusion>
66                     <groupId>org.springframework</groupId>
67                     <artifactId>spring-core</artifactId>
68                 </exclusion>
69                 <exclusion>
70                     <groupId>com.fasterxml.jackson.core</groupId>
71                     <artifactId>jackson-databind</artifactId>
72                 </exclusion>
73             </exclusions>
74         </dependency>
75
76         <dependency>
77             <groupId>ch.qos.logback</groupId>
78             <artifactId>logback-classic</artifactId>
79             <version>${logback.version}</version>
80             <scope>provided</scope>
81         </dependency>
82         <dependency>
83             <groupId>com.google.code.bean-matchers</groupId>
84             <artifactId>bean-matchers</artifactId>
85             <version>${bean-matcher.version}</version>
86             <scope>test</scope>
87         </dependency>
88
89         <dependency>
90             <groupId>ch.qos.logback</groupId>
91             <artifactId>logback-core</artifactId>
92             <version>${logback.version}</version>
93             <scope>provided</scope>
94         </dependency>
95
96         <!-- catalog dao -->
97         <dependency>
98             <groupId>org.openecomp.sdc.be</groupId>
99             <artifactId>catalog-dao</artifactId>
100             <version>${project.version}</version>
101             <scope>provided</scope>
102             <exclusions>
103                 <exclusion>
104                     <groupId>com.fasterxml.jackson.core</groupId>
105                     <artifactId>jackson-core</artifactId>
106                 </exclusion>
107                 <exclusion>
108                     <groupId>com.fasterxml.jackson.core</groupId>
109                     <artifactId>jackson-databind</artifactId>
110                 </exclusion>
111                 <exclusion>
112                     <groupId>com.fasterxml.jackson.core</groupId>
113                     <artifactId>jackson-annotations</artifactId>
114                 </exclusion>
115             </exclusions>
116         </dependency>
117
118         <dependency>
119             <groupId>com.google.guava</groupId>
120             <artifactId>guava</artifactId>
121             <version>${guava.version}</version><!--$NO-MVN-MAN-VER$ -->
122             <scope>provided</scope>
123         </dependency>
124
125         <dependency>
126             <groupId>org.functionaljava</groupId>
127             <artifactId>functionaljava</artifactId>
128             <version>${functionaljava.version}</version>
129             <scope>provided</scope>
130         </dependency>
131
132         <!-- spring -->
133
134         <dependency>
135             <groupId>org.springframework</groupId>
136             <artifactId>spring-core</artifactId>
137             <version>${spring.version}</version>
138             <scope>provided</scope>
139         </dependency>
140
141         <dependency>
142             <groupId>org.springframework</groupId>
143             <artifactId>spring-beans</artifactId>
144             <version>${spring.version}</version>
145             <scope>provided</scope>
146         </dependency>
147
148         <dependency>
149             <groupId>org.springframework</groupId>
150             <artifactId>spring-context</artifactId>
151             <version>${spring.version}</version>
152             <scope>provided</scope>
153             <exclusions>
154                 <exclusion>
155                     <groupId>org.springframework</groupId>
156                     <artifactId>spring-expression</artifactId>
157                 </exclusion>
158                 <exclusion>
159                     <groupId>org.springframework</groupId>
160                     <artifactId>spring-core</artifactId>
161                 </exclusion>
162             </exclusions>
163         </dependency>
164
165         <dependency>
166             <groupId>javax.validation</groupId>
167             <artifactId>validation-api</artifactId>
168             <version>${javax.validation.version}</version>
169         </dependency>
170
171         <dependency>
172             <groupId>org.hibernate.validator</groupId>
173             <artifactId>hibernate-validator</artifactId>
174             <version>${hibernate.validator.version}</version>
175         </dependency>
176
177         <!-- Gson -->
178         <dependency>
179             <groupId>com.google.code.gson</groupId>
180             <artifactId>gson</artifactId>
181             <version>${gson.version}</version>
182             <scope>provided</scope>
183         </dependency>
184
185         <dependency>
186             <groupId>org.janusgraph</groupId>
187             <artifactId>janusgraph-core</artifactId>
188             <version>${janusgraph.version}</version>
189             <scope>provided</scope>
190             <exclusions>
191                 <exclusion>
192                     <groupId>org.apache.tinkerpop</groupId>
193                     <artifactId>gremlin-core</artifactId>
194                 </exclusion>
195                 <exclusion>
196                     <groupId>org.apache.tinkerpop</groupId>
197                     <artifactId>gremlin-groovy</artifactId>
198                 </exclusion>
199                 <exclusion>
200                     <groupId>org.json</groupId>
201                     <artifactId>json</artifactId>
202                 </exclusion>
203                 <exclusion>
204                     <artifactId>slf4j-log4j12</artifactId>
205                     <groupId>org.slf4j</groupId>
206                 </exclusion>
207                 <exclusion>
208                     <artifactId>commons-collections</artifactId>
209                     <groupId>commons-collections</groupId>
210                 </exclusion>
211                 <exclusion>
212                     <artifactId>groovy</artifactId>
213                     <groupId>org.codehaus.groovy</groupId>
214                 </exclusion>
215                 <exclusion>
216                     <groupId>org.apache.thrift</groupId>
217                     <artifactId>libthrift</artifactId>
218                 </exclusion>
219                 <exclusion>
220                     <groupId>commons-io</groupId>
221                     <artifactId>commons-io</artifactId>
222                 </exclusion>
223                 <exclusion>
224                     <groupId>commons-codec</groupId>
225                     <artifactId>commons-codec</artifactId>
226                 </exclusion>
227                 <exclusion>
228                     <groupId>dom4j</groupId>
229                     <artifactId>dom4j</artifactId>
230                 </exclusion>
231                 <exclusion>
232                     <groupId>org.slf4j</groupId>
233                     <artifactId>jcl-over-slf4j</artifactId>
234                 </exclusion>
235             </exclusions>
236         </dependency>
237
238         <dependency>
239             <groupId>org.janusgraph</groupId>
240             <artifactId>janusgraph-cassandra</artifactId>
241             <version>${janusgraph.version}</version>
242             <scope>provided</scope>
243             <exclusions>
244                 <exclusion>
245                     <artifactId>slf4j-log4j12</artifactId>
246                     <groupId>org.slf4j</groupId>
247                 </exclusion>
248                 <exclusion>
249                     <groupId>org.apache.thrift</groupId>
250                     <artifactId>libthrift</artifactId>
251                 </exclusion>
252                 <exclusion>
253                     <groupId>org.codehaus.jackson</groupId>
254                     <artifactId>jackson-mapper-asl</artifactId>
255                 </exclusion>
256                 <exclusion>
257                     <groupId>commons-codec</groupId>
258                     <artifactId>commons-codec</artifactId>
259                 </exclusion>
260                 <exclusion>
261                     <groupId>org.hibernate</groupId>
262                     <artifactId>hibernate-validator</artifactId>
263                 </exclusion>
264                 <exclusion>
265                     <groupId>org.apache.cassandra</groupId>
266                     <artifactId>cassandra-all</artifactId>
267                 </exclusion>
268             </exclusions>
269         </dependency>
270
271         <dependency>
272             <groupId>org.apache.commons</groupId>
273             <artifactId>commons-lang3</artifactId>
274             <version>${lang3.version}</version>
275             <scope>provided</scope>
276         </dependency>
277
278         <!-- http client -->
279         <dependency>
280             <groupId>org.apache.httpcomponents</groupId>
281             <artifactId>httpclient</artifactId>
282             <version>${httpclient.version}</version>
283             <scope>provided</scope>
284             <exclusions>
285                 <exclusion>
286                     <groupId>commons-codec</groupId>
287                     <artifactId>commons-codec</artifactId>
288                 </exclusion>
289                 <exclusion>
290                     <groupId>org.apache.httpcomponents</groupId>
291                     <artifactId>httpcore</artifactId>
292                 </exclusion>
293             </exclusions>
294         </dependency>
295
296         <dependency>
297             <groupId>org.apache.httpcomponents</groupId>
298             <artifactId>httpcore</artifactId>
299             <version>${httpcore.version}</version>
300             <scope>provided</scope>
301         </dependency>
302
303         <!-- CASSANDRA -->
304         <dependency>
305             <groupId>com.datastax.cassandra</groupId>
306             <artifactId>cassandra-driver-core</artifactId>
307             <version>${cassandra.driver.version}</version>
308             <scope>provided</scope>
309             <exclusions>
310                 <exclusion>
311                     <groupId>com.fasterxml.jackson.core</groupId>
312                     <artifactId>jackson-databind</artifactId>
313                 </exclusion>
314                 <exclusion>
315                     <groupId>com.github.jnr</groupId>
316                     <artifactId>jnr-posix</artifactId>
317                 </exclusion>
318             </exclusions>
319         </dependency>
320         <dependency>
321             <groupId>com.datastax.cassandra</groupId>
322             <artifactId>cassandra-driver-mapping</artifactId>
323             <version>${cassandra.driver.version}</version>
324             <scope>provided</scope>
325         </dependency>
326         <!-- CASSANDRA END -->
327
328         <dependency>
329             <groupId>org.hamcrest</groupId>
330             <artifactId>hamcrest</artifactId>
331             <version>${hamcrest.version}</version>
332             <scope>test</scope>
333         </dependency>
334
335         <dependency>
336             <groupId>org.hamcrest</groupId>
337             <artifactId>hamcrest-library</artifactId>
338             <version>${hamcrest.version}</version>
339             <scope>test</scope>
340         </dependency>
341
342         <dependency>
343             <groupId>org.junit.jupiter</groupId>
344             <artifactId>junit-jupiter</artifactId>
345             <version>${junitJupiter.version}</version>
346             <scope>test</scope>
347         </dependency>
348
349         <dependency>
350             <groupId>org.mockito</groupId>
351             <artifactId>mockito-junit-jupiter</artifactId>
352             <version>${mockitoJupiter.version}</version>
353             <scope>test</scope>
354         </dependency>
355
356         <dependency>
357             <groupId>org.assertj</groupId>
358             <artifactId>assertj-core</artifactId>
359             <scope>test</scope>
360         </dependency>
361
362         <dependency>
363             <groupId>org.springframework</groupId>
364             <artifactId>spring-test</artifactId>
365             <version>${spring.version}</version>
366             <scope>test</scope>
367         </dependency>
368
369         <dependency>
370             <groupId>org.aspectj</groupId>
371             <artifactId>aspectjrt</artifactId>
372             <version>${aspectj.version}</version>
373             <scope>test</scope>
374         </dependency>
375
376         <dependency>
377             <groupId>org.aspectj</groupId>
378             <artifactId>aspectjweaver</artifactId>
379             <version>${aspectj.version}</version>
380             <scope>test</scope>
381         </dependency>
382
383         <dependency>
384             <groupId>org.springframework</groupId>
385             <artifactId>spring-web</artifactId>
386             <version>${spring.version}</version>
387             <scope>test</scope>
388             <exclusions>
389                 <exclusion>
390                     <groupId>org.springframework</groupId>
391                     <artifactId>spring-core</artifactId>
392                 </exclusion>
393             </exclusions>
394         </dependency>
395
396         <dependency>
397             <groupId>org.springframework</groupId>
398             <artifactId>spring-tx</artifactId>
399             <scope>test</scope>
400             <version>${spring.version}</version>
401             <exclusions>
402                 <exclusion>
403                     <groupId>org.springframework</groupId>
404                     <artifactId>spring-core</artifactId>
405                 </exclusion>
406             </exclusions>
407         </dependency>
408
409         <dependency>
410             <groupId>org.springframework</groupId>
411             <artifactId>spring-expression</artifactId>
412             <scope>test</scope>
413             <version>${spring.version}</version>
414         </dependency>
415
416         <dependency>
417             <groupId>org.apache.commons</groupId>
418             <artifactId>commons-jci-core</artifactId>
419             <version>${commons-jci-core.version}</version>
420             <scope>test</scope>
421             <exclusions>
422                 <exclusion>
423                     <groupId>commons-io</groupId>
424                     <artifactId>commons-io</artifactId>
425                 </exclusion>
426             </exclusions>
427         </dependency>
428
429         <dependency>
430             <groupId>org.awaitility</groupId>
431             <artifactId>awaitility</artifactId>
432             <version>${awaitility.version}</version>
433             <scope>test</scope>
434         </dependency>
435
436         <dependency>
437             <groupId>org.codehaus.groovy</groupId>
438             <artifactId>groovy</artifactId>
439         </dependency>
440
441         <dependency>
442             <groupId>io.netty</groupId>
443             <artifactId>netty-all</artifactId>
444         </dependency>
445         <dependency>
446             <groupId>org.apache.commons</groupId>
447             <artifactId>commons-collections4</artifactId>
448             <version>${commons.collections.version}</version>
449         </dependency>
450
451         <dependency>
452             <groupId>io.netty</groupId>
453             <artifactId>netty-handler</artifactId>
454         </dependency>
455         <dependency>
456             <groupId>org.projectlombok</groupId>
457             <artifactId>lombok</artifactId>
458             <version>${lombok.version}</version>
459         </dependency>
460         <dependency>
461             <groupId>joda-time</groupId>
462             <artifactId>joda-time</artifactId>
463             <version>${joda.time.version}</version>
464         </dependency>
465         <dependency>
466             <groupId>org.openecomp.sdc.core</groupId>
467             <artifactId>openecomp-tosca-lib</artifactId>
468             <version>${project.version}</version>
469             <exclusions>
470                 <exclusion>
471                     <groupId>com.fasterxml.jackson.core</groupId>
472                     <artifactId>jackson-core</artifactId>
473                 </exclusion>
474                 <exclusion>
475                     <groupId>org.springframework</groupId>
476                     <artifactId>spring-core</artifactId>
477                 </exclusion>
478                 <exclusion>
479                     <groupId>com.fasterxml.jackson.core</groupId>
480                     <artifactId>jackson-databind</artifactId>
481                 </exclusion>
482             </exclusions>
483         </dependency>
484         <dependency>
485             <groupId>com.vdurmont</groupId>
486             <artifactId>semver4j</artifactId>
487             <version>3.1.0</version>
488         </dependency>
489
490         <dependency>
491             <groupId>com.googlecode.jmapper-framework</groupId>
492             <artifactId>jmapper-core</artifactId>
493             <version>${jMapper.version}</version>
494             <exclusions>
495                 <exclusion>
496                     <groupId>com.thoughtworks.xstream</groupId>
497                     <artifactId>xstream</artifactId>
498                 </exclusion>
499             </exclusions>
500         </dependency>
501
502     </dependencies>
503     <build>
504         <plugins>
505             <plugin>
506                 <groupId>org.apache.maven.plugins</groupId>
507                 <artifactId>maven-deploy-plugin</artifactId>
508                 <configuration>
509                     <skip>false</skip>
510                 </configuration>
511             </plugin>
512             <plugin>
513                 <groupId>com.github.sylvainlaurent.maven</groupId>
514                 <artifactId>yaml-json-validator-maven-plugin</artifactId>
515                 <executions>
516                     <execution>
517                         <id>validate</id>
518                         <phase>validate</phase>
519                         <goals>
520                             <goal>validate</goal>
521                         </goals>
522                         <configuration>
523                             <validationSets>
524                                 <validationSet>
525                                     <includes>
526                                         <include>src/main/resources/**/*.y*ml</include>
527                                         <include>src/test/resources/**/*.y*ml</include>
528                                     </includes>
529                                 </validationSet>
530                                 <validationSet>
531                                     <includes>
532                                         <include>src/main/resources/**/*.json</include>
533                                         <include>src/test/resources/**/*.json</include>
534                                     </includes>
535                                 </validationSet>
536                             </validationSets>
537                             <skip>${skipYamlJsonValidator}</skip>
538                         </configuration>
539                     </execution>
540                 </executions>
541             </plugin>
542         </plugins>
543     </build>
544 </project>