Remove dependency vulnerability
[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.9.0-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
27     <!-- Common of SDC -->
28     <dependency>
29       <groupId>org.openecomp.sdc</groupId>
30       <artifactId>common-app-api</artifactId>
31       <version>${project.version}</version>
32       <scope>provided</scope>
33       <exclusions>
34         <exclusion>
35           <groupId>com.fasterxml.jackson.core</groupId>
36           <artifactId>jackson-core</artifactId>
37         </exclusion>
38       </exclusions>
39     </dependency>
40
41     <dependency>
42       <groupId>org.openecomp.sdc.be</groupId>
43       <artifactId>common-be</artifactId>
44       <version>${project.version}</version>
45       <scope>provided</scope>
46     </dependency>
47
48     <dependency>
49       <groupId>ch.qos.logback</groupId>
50       <artifactId>logback-classic</artifactId>
51       <version>${logback.version}</version>
52       <scope>provided</scope>
53     </dependency>
54     <dependency>
55       <groupId>com.google.code.bean-matchers</groupId>
56       <artifactId>bean-matchers</artifactId>
57       <version>${bean-matcher.version}</version>
58       <scope>test</scope>
59     </dependency>
60
61     <dependency>
62       <groupId>ch.qos.logback</groupId>
63       <artifactId>logback-core</artifactId>
64       <version>${logback.version}</version>
65       <scope>provided</scope>
66     </dependency>
67
68     <!-- catalog dao -->
69     <dependency>
70       <groupId>org.openecomp.sdc.be</groupId>
71       <artifactId>catalog-dao</artifactId>
72       <version>${project.version}</version>
73       <scope>provided</scope>
74       <exclusions>
75         <exclusion>
76           <groupId>com.fasterxml.jackson.core</groupId>
77           <artifactId>jackson-core</artifactId>
78         </exclusion>
79       </exclusions>
80     </dependency>
81
82     <dependency>
83       <groupId>com.google.guava</groupId>
84       <artifactId>guava</artifactId>
85       <version>${guava.version}</version><!--$NO-MVN-MAN-VER$ -->
86       <scope>provided</scope>
87     </dependency>
88
89     <dependency>
90       <groupId>org.functionaljava</groupId>
91       <artifactId>functionaljava</artifactId>
92       <version>${functionaljava.version}</version>
93       <scope>provided</scope>
94     </dependency>
95
96     <!-- spring -->
97
98     <dependency>
99       <groupId>org.springframework</groupId>
100       <artifactId>spring-core</artifactId>
101       <version>${spring.version}</version>
102       <scope>provided</scope>
103     </dependency>
104
105     <dependency>
106       <groupId>org.springframework</groupId>
107       <artifactId>spring-beans</artifactId>
108       <version>${spring.version}</version>
109       <scope>provided</scope>
110     </dependency>
111
112     <dependency>
113       <groupId>org.springframework</groupId>
114       <artifactId>spring-context</artifactId>
115       <version>${spring.version}</version>
116       <scope>provided</scope>
117     </dependency>
118
119     <dependency>
120       <groupId>javax.validation</groupId>
121       <artifactId>validation-api</artifactId>
122       <version>${javax.validation.version}</version>
123     </dependency>
124
125     <dependency>
126       <groupId>org.hibernate.validator</groupId>
127       <artifactId>hibernate-validator</artifactId>
128       <version>${hibernate.validator.version}</version>
129     </dependency>
130
131     <!-- Gson -->
132     <dependency>
133       <groupId>com.google.code.gson</groupId>
134       <artifactId>gson</artifactId>
135       <version>${gson.version}</version>
136       <scope>provided</scope>
137     </dependency>
138
139     <dependency>
140       <groupId>org.janusgraph</groupId>
141       <artifactId>janusgraph-core</artifactId>
142       <version>${janusgraph.version}</version>
143       <scope>provided</scope>
144       <exclusions>
145         <exclusion>
146           <artifactId>gremlin-groovy</artifactId>
147           <groupId>org.apache.tinkerpop</groupId>
148         </exclusion>
149         <exclusion>
150           <groupId>org.json</groupId>
151           <artifactId>json</artifactId>
152         </exclusion>
153         <exclusion>
154           <artifactId>slf4j-log4j12</artifactId>
155           <groupId>org.slf4j</groupId>
156         </exclusion>
157         <exclusion>
158           <artifactId>commons-collections</artifactId>
159           <groupId>commons-collections</groupId>
160         </exclusion>
161         <exclusion>
162           <artifactId>groovy</artifactId>
163           <groupId>org.codehaus.groovy</groupId>
164         </exclusion>
165         <exclusion>
166           <groupId>org.apache.thrift</groupId>
167           <artifactId>libthrift</artifactId>
168         </exclusion>
169         <exclusion>
170           <groupId>commons-io</groupId>
171           <artifactId>commons-io</artifactId>
172         </exclusion>
173         <exclusion>
174           <groupId>commons-codec</groupId>
175           <artifactId>commons-codec</artifactId>
176         </exclusion>
177         <exclusion>
178           <groupId>dom4j</groupId>
179           <artifactId>dom4j</artifactId>
180         </exclusion>
181       </exclusions>
182     </dependency>
183
184     <dependency>
185       <groupId>org.janusgraph</groupId>
186       <artifactId>janusgraph-cassandra</artifactId>
187       <version>${janusgraph.version}</version>
188       <scope>provided</scope>
189       <exclusions>
190         <exclusion>
191           <artifactId>slf4j-log4j12</artifactId>
192           <groupId>org.slf4j</groupId>
193         </exclusion>
194         <exclusion>
195           <groupId>org.apache.thrift</groupId>
196           <artifactId>libthrift</artifactId>
197         </exclusion>
198         <exclusion>
199           <groupId>org.codehaus.jackson</groupId>
200           <artifactId>jackson-mapper-asl</artifactId>
201         </exclusion>
202         <exclusion>
203           <groupId>commons-codec</groupId>
204           <artifactId>commons-codec</artifactId>
205         </exclusion>
206         <exclusion>
207           <groupId>org.hibernate</groupId>
208           <artifactId>hibernate-validator</artifactId>
209         </exclusion>
210         <exclusion>
211           <groupId>org.apache.cassandra</groupId>
212           <artifactId>cassandra-all</artifactId>
213         </exclusion>
214       </exclusions>
215     </dependency>
216
217     <dependency>
218       <groupId>org.apache.commons</groupId>
219       <artifactId>commons-lang3</artifactId>
220       <version>${lang3.version}</version>
221       <scope>provided</scope>
222     </dependency>
223
224     <!-- http client -->
225     <dependency>
226       <groupId>org.apache.httpcomponents</groupId>
227       <artifactId>httpclient</artifactId>
228       <version>${httpclient.version}</version>
229       <scope>provided</scope>
230       <exclusions>
231         <exclusion>
232           <groupId>commons-codec</groupId>
233           <artifactId>commons-codec</artifactId>
234         </exclusion>
235       </exclusions>
236     </dependency>
237
238     <dependency>
239       <groupId>org.apache.httpcomponents</groupId>
240       <artifactId>httpcore</artifactId>
241       <version>${httpcore.version}</version>
242       <scope>provided</scope>
243     </dependency>
244
245     <!-- CASSANDRA -->
246     <dependency>
247       <groupId>com.datastax.cassandra</groupId>
248       <artifactId>cassandra-driver-core</artifactId>
249       <version>${cassandra.driver.version}</version>
250       <scope>provided</scope>
251     </dependency>
252     <dependency>
253       <groupId>com.datastax.cassandra</groupId>
254       <artifactId>cassandra-driver-mapping</artifactId>
255       <version>${cassandra.driver.version}</version>
256       <scope>provided</scope>
257     </dependency>
258     <!-- CASSANDRA END -->
259
260     <dependency>
261       <groupId>org.hamcrest</groupId>
262       <artifactId>hamcrest</artifactId>
263       <version>${hamcrest.version}</version>
264       <scope>test</scope>
265     </dependency>
266
267     <dependency>
268       <groupId>org.hamcrest</groupId>
269       <artifactId>hamcrest-library</artifactId>
270       <version>${hamcrest.version}</version>
271       <scope>test</scope>
272     </dependency>
273
274     <dependency>
275       <groupId>org.junit.jupiter</groupId>
276       <artifactId>junit-jupiter</artifactId>
277       <version>${junitJupiter.version}</version>
278       <scope>test</scope>
279     </dependency>
280
281     <dependency>
282       <groupId>org.mockito</groupId>
283       <artifactId>mockito-junit-jupiter</artifactId>
284       <version>${mockitoJupiter.version}</version>
285       <scope>test</scope>
286     </dependency>
287
288     <dependency>
289       <groupId>org.assertj</groupId>
290       <artifactId>assertj-core</artifactId>
291       <scope>test</scope>
292     </dependency>
293
294     <dependency>
295       <groupId>org.springframework</groupId>
296       <artifactId>spring-test</artifactId>
297       <version>${spring.version}</version>
298       <scope>test</scope>
299     </dependency>
300
301     <dependency>
302       <groupId>org.aspectj</groupId>
303       <artifactId>aspectjrt</artifactId>
304       <version>${aspectj.version}</version>
305       <scope>test</scope>
306     </dependency>
307
308     <dependency>
309       <groupId>org.aspectj</groupId>
310       <artifactId>aspectjweaver</artifactId>
311       <version>${aspectj.version}</version>
312       <scope>test</scope>
313     </dependency>
314
315     <dependency>
316       <groupId>org.springframework</groupId>
317       <artifactId>spring-web</artifactId>
318       <version>${spring.version}</version>
319       <scope>test</scope>
320     </dependency>
321
322     <dependency>
323       <groupId>org.springframework</groupId>
324       <artifactId>spring-tx</artifactId>
325       <scope>test</scope>
326       <version>${spring.version}</version>
327     </dependency>
328
329     <dependency>
330       <groupId>org.apache.commons</groupId>
331       <artifactId>commons-jci-core</artifactId>
332       <version>${commons-jci-core.version}</version>
333       <scope>test</scope>
334       <exclusions>
335         <exclusion>
336           <groupId>commons-io</groupId>
337           <artifactId>commons-io</artifactId>
338         </exclusion>
339       </exclusions>
340     </dependency>
341
342     <dependency>
343       <groupId>org.awaitility</groupId>
344       <artifactId>awaitility</artifactId>
345       <version>${awaitility.version}</version>
346       <scope>test</scope>
347     </dependency>
348
349     <dependency>
350       <groupId>org.codehaus.groovy</groupId>
351       <artifactId>groovy</artifactId>
352     </dependency>
353
354     <dependency>
355       <groupId>io.netty</groupId>
356       <artifactId>netty-all</artifactId>
357     </dependency>
358     <dependency>
359       <groupId>org.apache.commons</groupId>
360       <artifactId>commons-collections4</artifactId>
361       <version>${commons.collections.version}</version>
362     </dependency>
363
364     <dependency>
365       <groupId>io.netty</groupId>
366       <artifactId>netty-handler</artifactId>
367     </dependency>
368     <dependency>
369       <groupId>org.projectlombok</groupId>
370       <artifactId>lombok</artifactId>
371       <version>${lombok.version}</version>
372     </dependency>
373     <dependency>
374       <groupId>joda-time</groupId>
375       <artifactId>joda-time</artifactId>
376       <version>${joda.time.version}</version>
377     </dependency>
378     <dependency>
379       <groupId>org.openecomp.sdc.core</groupId>
380       <artifactId>openecomp-tosca-lib</artifactId>
381       <version>${project.version}</version>
382       <exclusions>
383         <exclusion>
384           <groupId>com.fasterxml.jackson.core</groupId>
385           <artifactId>jackson-core</artifactId>
386         </exclusion>
387       </exclusions>
388     </dependency>
389     <dependency>
390       <groupId>com.vdurmont</groupId>
391       <artifactId>semver4j</artifactId>
392       <version>3.1.0</version>
393     </dependency>
394
395     <dependency>
396       <groupId>com.googlecode.jmapper-framework</groupId>
397       <artifactId>jmapper-core</artifactId>
398       <version>${jMapper.version}</version>
399       <exclusions>
400         <exclusion>
401           <groupId>com.thoughtworks.xstream</groupId>
402           <artifactId>xstream</artifactId>
403         </exclusion>
404       </exclusions>
405     </dependency>
406
407   </dependencies>
408   <build>
409     <plugins>
410       <plugin>
411         <groupId>org.apache.maven.plugins</groupId>
412         <artifactId>maven-deploy-plugin</artifactId>
413         <configuration>
414           <skip>true</skip>
415         </configuration>
416       </plugin>
417       <plugin>
418         <groupId>com.github.sylvainlaurent.maven</groupId>
419         <artifactId>yaml-json-validator-maven-plugin</artifactId>
420         <executions>
421           <execution>
422             <id>validate</id>
423             <phase>validate</phase>
424             <goals>
425               <goal>validate</goal>
426             </goals>
427             <configuration>
428               <validationSets>
429                 <validationSet>
430                   <includes>
431                     <include>src/main/resources/**/*.y*ml</include>
432                     <include>src/test/resources/**/*.y*ml</include>
433                   </includes>
434                 </validationSet>
435                 <validationSet>
436                   <includes>
437                     <include>src/main/resources/**/*.json</include>
438                     <include>src/test/resources/**/*.json</include>
439                   </includes>
440                 </validationSet>
441               </validationSets>
442               <skip>${skipYamlJsonValidator}</skip>
443             </configuration>
444           </execution>
445         </executions>
446       </plugin>
447     </plugins>
448   </build>
449 </project>