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