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                     <artifactId>gremlin-groovy</artifactId>
193                     <groupId>org.apache.tinkerpop</groupId>
194                 </exclusion>
195                 <exclusion>
196                     <groupId>org.json</groupId>
197                     <artifactId>json</artifactId>
198                 </exclusion>
199                 <exclusion>
200                     <artifactId>slf4j-log4j12</artifactId>
201                     <groupId>org.slf4j</groupId>
202                 </exclusion>
203                 <exclusion>
204                     <artifactId>commons-collections</artifactId>
205                     <groupId>commons-collections</groupId>
206                 </exclusion>
207                 <exclusion>
208                     <artifactId>groovy</artifactId>
209                     <groupId>org.codehaus.groovy</groupId>
210                 </exclusion>
211                 <exclusion>
212                     <groupId>org.apache.thrift</groupId>
213                     <artifactId>libthrift</artifactId>
214                 </exclusion>
215                 <exclusion>
216                     <groupId>commons-io</groupId>
217                     <artifactId>commons-io</artifactId>
218                 </exclusion>
219                 <exclusion>
220                     <groupId>commons-codec</groupId>
221                     <artifactId>commons-codec</artifactId>
222                 </exclusion>
223                 <exclusion>
224                     <groupId>dom4j</groupId>
225                     <artifactId>dom4j</artifactId>
226                 </exclusion>
227                 <exclusion>
228                     <groupId>org.slf4j</groupId>
229                     <artifactId>jcl-over-slf4j</artifactId>
230                 </exclusion>
231             </exclusions>
232         </dependency>
233
234         <dependency>
235             <groupId>org.janusgraph</groupId>
236             <artifactId>janusgraph-cassandra</artifactId>
237             <version>${janusgraph.version}</version>
238             <scope>provided</scope>
239             <exclusions>
240                 <exclusion>
241                     <artifactId>slf4j-log4j12</artifactId>
242                     <groupId>org.slf4j</groupId>
243                 </exclusion>
244                 <exclusion>
245                     <groupId>org.apache.thrift</groupId>
246                     <artifactId>libthrift</artifactId>
247                 </exclusion>
248                 <exclusion>
249                     <groupId>org.codehaus.jackson</groupId>
250                     <artifactId>jackson-mapper-asl</artifactId>
251                 </exclusion>
252                 <exclusion>
253                     <groupId>commons-codec</groupId>
254                     <artifactId>commons-codec</artifactId>
255                 </exclusion>
256                 <exclusion>
257                     <groupId>org.hibernate</groupId>
258                     <artifactId>hibernate-validator</artifactId>
259                 </exclusion>
260                 <exclusion>
261                     <groupId>org.apache.cassandra</groupId>
262                     <artifactId>cassandra-all</artifactId>
263                 </exclusion>
264             </exclusions>
265         </dependency>
266
267         <dependency>
268             <groupId>org.apache.commons</groupId>
269             <artifactId>commons-lang3</artifactId>
270             <version>${lang3.version}</version>
271             <scope>provided</scope>
272         </dependency>
273
274         <!-- http client -->
275         <dependency>
276             <groupId>org.apache.httpcomponents</groupId>
277             <artifactId>httpclient</artifactId>
278             <version>${httpclient.version}</version>
279             <scope>provided</scope>
280             <exclusions>
281                 <exclusion>
282                     <groupId>commons-codec</groupId>
283                     <artifactId>commons-codec</artifactId>
284                 </exclusion>
285                 <exclusion>
286                     <groupId>org.apache.httpcomponents</groupId>
287                     <artifactId>httpcore</artifactId>
288                 </exclusion>
289             </exclusions>
290         </dependency>
291
292         <dependency>
293             <groupId>org.apache.httpcomponents</groupId>
294             <artifactId>httpcore</artifactId>
295             <version>${httpcore.version}</version>
296             <scope>provided</scope>
297         </dependency>
298
299         <!-- CASSANDRA -->
300         <dependency>
301             <groupId>com.datastax.cassandra</groupId>
302             <artifactId>cassandra-driver-core</artifactId>
303             <version>${cassandra.driver.version}</version>
304             <scope>provided</scope>
305             <exclusions>
306                 <exclusion>
307                     <groupId>com.fasterxml.jackson.core</groupId>
308                     <artifactId>jackson-databind</artifactId>
309                 </exclusion>
310                 <exclusion>
311                     <groupId>com.github.jnr</groupId>
312                     <artifactId>jnr-posix</artifactId>
313                 </exclusion>
314             </exclusions>
315         </dependency>
316         <dependency>
317             <groupId>com.datastax.cassandra</groupId>
318             <artifactId>cassandra-driver-mapping</artifactId>
319             <version>${cassandra.driver.version}</version>
320             <scope>provided</scope>
321         </dependency>
322         <!-- CASSANDRA END -->
323
324         <dependency>
325             <groupId>org.hamcrest</groupId>
326             <artifactId>hamcrest</artifactId>
327             <version>${hamcrest.version}</version>
328             <scope>test</scope>
329         </dependency>
330
331         <dependency>
332             <groupId>org.hamcrest</groupId>
333             <artifactId>hamcrest-library</artifactId>
334             <version>${hamcrest.version}</version>
335             <scope>test</scope>
336         </dependency>
337
338         <dependency>
339             <groupId>org.junit.jupiter</groupId>
340             <artifactId>junit-jupiter</artifactId>
341             <version>${junitJupiter.version}</version>
342             <scope>test</scope>
343         </dependency>
344
345         <dependency>
346             <groupId>org.mockito</groupId>
347             <artifactId>mockito-junit-jupiter</artifactId>
348             <version>${mockitoJupiter.version}</version>
349             <scope>test</scope>
350         </dependency>
351
352         <dependency>
353             <groupId>org.assertj</groupId>
354             <artifactId>assertj-core</artifactId>
355             <scope>test</scope>
356         </dependency>
357
358         <dependency>
359             <groupId>org.springframework</groupId>
360             <artifactId>spring-test</artifactId>
361             <version>${spring.version}</version>
362             <scope>test</scope>
363         </dependency>
364
365         <dependency>
366             <groupId>org.aspectj</groupId>
367             <artifactId>aspectjrt</artifactId>
368             <version>${aspectj.version}</version>
369             <scope>test</scope>
370         </dependency>
371
372         <dependency>
373             <groupId>org.aspectj</groupId>
374             <artifactId>aspectjweaver</artifactId>
375             <version>${aspectj.version}</version>
376             <scope>test</scope>
377         </dependency>
378
379         <dependency>
380             <groupId>org.springframework</groupId>
381             <artifactId>spring-web</artifactId>
382             <version>${spring.version}</version>
383             <scope>test</scope>
384             <exclusions>
385                 <exclusion>
386                     <groupId>org.springframework</groupId>
387                     <artifactId>spring-core</artifactId>
388                 </exclusion>
389             </exclusions>
390         </dependency>
391
392         <dependency>
393             <groupId>org.springframework</groupId>
394             <artifactId>spring-tx</artifactId>
395             <scope>test</scope>
396             <version>${spring.version}</version>
397             <exclusions>
398                 <exclusion>
399                     <groupId>org.springframework</groupId>
400                     <artifactId>spring-core</artifactId>
401                 </exclusion>
402             </exclusions>
403         </dependency>
404
405         <dependency>
406             <groupId>org.springframework</groupId>
407             <artifactId>spring-expression</artifactId>
408             <scope>test</scope>
409             <version>${spring.version}</version>
410         </dependency>
411
412         <dependency>
413             <groupId>org.apache.commons</groupId>
414             <artifactId>commons-jci-core</artifactId>
415             <version>${commons-jci-core.version}</version>
416             <scope>test</scope>
417             <exclusions>
418                 <exclusion>
419                     <groupId>commons-io</groupId>
420                     <artifactId>commons-io</artifactId>
421                 </exclusion>
422             </exclusions>
423         </dependency>
424
425         <dependency>
426             <groupId>org.awaitility</groupId>
427             <artifactId>awaitility</artifactId>
428             <version>${awaitility.version}</version>
429             <scope>test</scope>
430         </dependency>
431
432         <dependency>
433             <groupId>org.codehaus.groovy</groupId>
434             <artifactId>groovy</artifactId>
435         </dependency>
436
437         <dependency>
438             <groupId>io.netty</groupId>
439             <artifactId>netty-all</artifactId>
440         </dependency>
441         <dependency>
442             <groupId>org.apache.commons</groupId>
443             <artifactId>commons-collections4</artifactId>
444             <version>${commons.collections.version}</version>
445         </dependency>
446
447         <dependency>
448             <groupId>io.netty</groupId>
449             <artifactId>netty-handler</artifactId>
450         </dependency>
451         <dependency>
452             <groupId>org.projectlombok</groupId>
453             <artifactId>lombok</artifactId>
454             <version>${lombok.version}</version>
455         </dependency>
456         <dependency>
457             <groupId>joda-time</groupId>
458             <artifactId>joda-time</artifactId>
459             <version>${joda.time.version}</version>
460         </dependency>
461         <dependency>
462             <groupId>org.openecomp.sdc.core</groupId>
463             <artifactId>openecomp-tosca-lib</artifactId>
464             <version>${project.version}</version>
465             <exclusions>
466                 <exclusion>
467                     <groupId>com.fasterxml.jackson.core</groupId>
468                     <artifactId>jackson-core</artifactId>
469                 </exclusion>
470                 <exclusion>
471                     <groupId>org.springframework</groupId>
472                     <artifactId>spring-core</artifactId>
473                 </exclusion>
474                 <exclusion>
475                     <groupId>com.fasterxml.jackson.core</groupId>
476                     <artifactId>jackson-databind</artifactId>
477                 </exclusion>
478             </exclusions>
479         </dependency>
480         <dependency>
481             <groupId>com.vdurmont</groupId>
482             <artifactId>semver4j</artifactId>
483             <version>3.1.0</version>
484         </dependency>
485
486         <dependency>
487             <groupId>com.googlecode.jmapper-framework</groupId>
488             <artifactId>jmapper-core</artifactId>
489             <version>${jMapper.version}</version>
490             <exclusions>
491                 <exclusion>
492                     <groupId>com.thoughtworks.xstream</groupId>
493                     <artifactId>xstream</artifactId>
494                 </exclusion>
495             </exclusions>
496         </dependency>
497
498     </dependencies>
499     <build>
500         <plugins>
501             <plugin>
502                 <groupId>org.apache.maven.plugins</groupId>
503                 <artifactId>maven-deploy-plugin</artifactId>
504                 <configuration>
505                     <skip>false</skip>
506                 </configuration>
507             </plugin>
508             <plugin>
509                 <groupId>com.github.sylvainlaurent.maven</groupId>
510                 <artifactId>yaml-json-validator-maven-plugin</artifactId>
511                 <executions>
512                     <execution>
513                         <id>validate</id>
514                         <phase>validate</phase>
515                         <goals>
516                             <goal>validate</goal>
517                         </goals>
518                         <configuration>
519                             <validationSets>
520                                 <validationSet>
521                                     <includes>
522                                         <include>src/main/resources/**/*.y*ml</include>
523                                         <include>src/test/resources/**/*.y*ml</include>
524                                     </includes>
525                                 </validationSet>
526                                 <validationSet>
527                                     <includes>
528                                         <include>src/main/resources/**/*.json</include>
529                                         <include>src/test/resources/**/*.json</include>
530                                     </includes>
531                                 </validationSet>
532                             </validationSets>
533                             <skip>${skipYamlJsonValidator}</skip>
534                         </configuration>
535                     </execution>
536                 </executions>
537             </plugin>
538         </plugins>
539     </build>
540 </project>