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