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