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