Update SDC version to 1.11.8-SNAPSHOT
[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             </exclusions>
311         </dependency>
312         <dependency>
313             <groupId>com.datastax.cassandra</groupId>
314             <artifactId>cassandra-driver-mapping</artifactId>
315             <version>${cassandra.driver.version}</version>
316             <scope>provided</scope>
317         </dependency>
318         <!-- CASSANDRA END -->
319
320         <dependency>
321             <groupId>org.hamcrest</groupId>
322             <artifactId>hamcrest</artifactId>
323             <version>${hamcrest.version}</version>
324             <scope>test</scope>
325         </dependency>
326
327         <dependency>
328             <groupId>org.hamcrest</groupId>
329             <artifactId>hamcrest-library</artifactId>
330             <version>${hamcrest.version}</version>
331             <scope>test</scope>
332         </dependency>
333
334         <dependency>
335             <groupId>org.junit.jupiter</groupId>
336             <artifactId>junit-jupiter</artifactId>
337             <version>${junitJupiter.version}</version>
338             <scope>test</scope>
339         </dependency>
340
341         <dependency>
342             <groupId>org.mockito</groupId>
343             <artifactId>mockito-junit-jupiter</artifactId>
344             <version>${mockitoJupiter.version}</version>
345             <scope>test</scope>
346         </dependency>
347
348         <dependency>
349             <groupId>org.assertj</groupId>
350             <artifactId>assertj-core</artifactId>
351             <scope>test</scope>
352         </dependency>
353
354         <dependency>
355             <groupId>org.springframework</groupId>
356             <artifactId>spring-test</artifactId>
357             <version>${spring.version}</version>
358             <scope>test</scope>
359         </dependency>
360
361         <dependency>
362             <groupId>org.aspectj</groupId>
363             <artifactId>aspectjrt</artifactId>
364             <version>${aspectj.version}</version>
365             <scope>test</scope>
366         </dependency>
367
368         <dependency>
369             <groupId>org.aspectj</groupId>
370             <artifactId>aspectjweaver</artifactId>
371             <version>${aspectj.version}</version>
372             <scope>test</scope>
373         </dependency>
374
375         <dependency>
376             <groupId>org.springframework</groupId>
377             <artifactId>spring-web</artifactId>
378             <version>${spring.version}</version>
379             <scope>test</scope>
380             <exclusions>
381                 <exclusion>
382                     <groupId>org.springframework</groupId>
383                     <artifactId>spring-core</artifactId>
384                 </exclusion>
385             </exclusions>
386         </dependency>
387
388         <dependency>
389             <groupId>org.springframework</groupId>
390             <artifactId>spring-tx</artifactId>
391             <scope>test</scope>
392             <version>${spring.version}</version>
393             <exclusions>
394                 <exclusion>
395                     <groupId>org.springframework</groupId>
396                     <artifactId>spring-core</artifactId>
397                 </exclusion>
398             </exclusions>
399         </dependency>
400
401         <dependency>
402             <groupId>org.springframework</groupId>
403             <artifactId>spring-expression</artifactId>
404             <scope>test</scope>
405             <version>${spring.version}</version>
406         </dependency>
407
408         <dependency>
409             <groupId>org.apache.commons</groupId>
410             <artifactId>commons-jci-core</artifactId>
411             <version>${commons-jci-core.version}</version>
412             <scope>test</scope>
413             <exclusions>
414                 <exclusion>
415                     <groupId>commons-io</groupId>
416                     <artifactId>commons-io</artifactId>
417                 </exclusion>
418             </exclusions>
419         </dependency>
420
421         <dependency>
422             <groupId>org.awaitility</groupId>
423             <artifactId>awaitility</artifactId>
424             <version>${awaitility.version}</version>
425             <scope>test</scope>
426         </dependency>
427
428         <dependency>
429             <groupId>org.codehaus.groovy</groupId>
430             <artifactId>groovy</artifactId>
431         </dependency>
432
433         <dependency>
434             <groupId>io.netty</groupId>
435             <artifactId>netty-all</artifactId>
436         </dependency>
437         <dependency>
438             <groupId>org.apache.commons</groupId>
439             <artifactId>commons-collections4</artifactId>
440             <version>${commons.collections.version}</version>
441         </dependency>
442
443         <dependency>
444             <groupId>io.netty</groupId>
445             <artifactId>netty-handler</artifactId>
446         </dependency>
447         <dependency>
448             <groupId>org.projectlombok</groupId>
449             <artifactId>lombok</artifactId>
450             <version>${lombok.version}</version>
451         </dependency>
452         <dependency>
453             <groupId>joda-time</groupId>
454             <artifactId>joda-time</artifactId>
455             <version>${joda.time.version}</version>
456         </dependency>
457         <dependency>
458             <groupId>org.openecomp.sdc.core</groupId>
459             <artifactId>openecomp-tosca-lib</artifactId>
460             <version>${project.version}</version>
461             <exclusions>
462                 <exclusion>
463                     <groupId>com.fasterxml.jackson.core</groupId>
464                     <artifactId>jackson-core</artifactId>
465                 </exclusion>
466                 <exclusion>
467                     <groupId>org.springframework</groupId>
468                     <artifactId>spring-core</artifactId>
469                 </exclusion>
470                 <exclusion>
471                     <groupId>com.fasterxml.jackson.core</groupId>
472                     <artifactId>jackson-databind</artifactId>
473                 </exclusion>
474             </exclusions>
475         </dependency>
476         <dependency>
477             <groupId>com.vdurmont</groupId>
478             <artifactId>semver4j</artifactId>
479             <version>3.1.0</version>
480         </dependency>
481
482         <dependency>
483             <groupId>com.googlecode.jmapper-framework</groupId>
484             <artifactId>jmapper-core</artifactId>
485             <version>${jMapper.version}</version>
486             <exclusions>
487                 <exclusion>
488                     <groupId>com.thoughtworks.xstream</groupId>
489                     <artifactId>xstream</artifactId>
490                 </exclusion>
491             </exclusions>
492         </dependency>
493
494     </dependencies>
495     <build>
496         <plugins>
497             <plugin>
498                 <groupId>org.apache.maven.plugins</groupId>
499                 <artifactId>maven-deploy-plugin</artifactId>
500                 <configuration>
501                     <skip>false</skip>
502                 </configuration>
503             </plugin>
504             <plugin>
505                 <groupId>com.github.sylvainlaurent.maven</groupId>
506                 <artifactId>yaml-json-validator-maven-plugin</artifactId>
507                 <executions>
508                     <execution>
509                         <id>validate</id>
510                         <phase>validate</phase>
511                         <goals>
512                             <goal>validate</goal>
513                         </goals>
514                         <configuration>
515                             <validationSets>
516                                 <validationSet>
517                                     <includes>
518                                         <include>src/main/resources/**/*.y*ml</include>
519                                         <include>src/test/resources/**/*.y*ml</include>
520                                     </includes>
521                                 </validationSet>
522                                 <validationSet>
523                                     <includes>
524                                         <include>src/main/resources/**/*.json</include>
525                                         <include>src/test/resources/**/*.json</include>
526                                     </includes>
527                                 </validationSet>
528                             </validationSets>
529                             <skip>${skipYamlJsonValidator}</skip>
530                         </configuration>
531                     </execution>
532                 </executions>
533             </plugin>
534         </plugins>
535     </build>
536 </project>