Step version to 1.12.4-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.4-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                     <artifactId>slf4j-log4j12</artifactId>
274                     <groupId>org.slf4j</groupId>
275                 </exclusion>
276                 <exclusion>
277                     <groupId>org.apache.thrift</groupId>
278                     <artifactId>libthrift</artifactId>
279                 </exclusion>
280                 <exclusion>
281                     <groupId>org.codehaus.jackson</groupId>
282                     <artifactId>jackson-mapper-asl</artifactId>
283                 </exclusion>
284                 <exclusion>
285                     <groupId>commons-codec</groupId>
286                     <artifactId>commons-codec</artifactId>
287                 </exclusion>
288                 <exclusion>
289                     <groupId>org.hibernate</groupId>
290                     <artifactId>hibernate-validator</artifactId>
291                 </exclusion>
292                 <exclusion>
293                     <groupId>org.apache.cassandra</groupId>
294                     <artifactId>cassandra-all</artifactId>
295                 </exclusion>
296             </exclusions>
297         </dependency>
298
299         <dependency>
300             <groupId>org.apache.commons</groupId>
301             <artifactId>commons-lang3</artifactId>
302             <version>${lang3.version}</version>
303             <scope>provided</scope>
304         </dependency>
305
306         <!-- http client -->
307         <dependency>
308             <groupId>org.apache.httpcomponents</groupId>
309             <artifactId>httpclient</artifactId>
310             <version>${httpclient.version}</version>
311             <scope>provided</scope>
312             <exclusions>
313                 <exclusion>
314                     <groupId>commons-codec</groupId>
315                     <artifactId>commons-codec</artifactId>
316                 </exclusion>
317                 <exclusion>
318                     <groupId>org.apache.httpcomponents</groupId>
319                     <artifactId>httpcore</artifactId>
320                 </exclusion>
321             </exclusions>
322         </dependency>
323
324         <dependency>
325             <groupId>org.apache.httpcomponents</groupId>
326             <artifactId>httpcore</artifactId>
327             <version>${httpcore.version}</version>
328             <scope>provided</scope>
329         </dependency>
330
331         <!-- CASSANDRA -->
332         <dependency>
333             <groupId>com.datastax.cassandra</groupId>
334             <artifactId>cassandra-driver-core</artifactId>
335             <version>${cassandra.driver.version}</version>
336             <scope>provided</scope>
337             <exclusions>
338                 <exclusion>
339                     <groupId>com.fasterxml.jackson.core</groupId>
340                     <artifactId>jackson-databind</artifactId>
341                 </exclusion>
342                 <exclusion>
343                     <groupId>com.github.jnr</groupId>
344                     <artifactId>jnr-posix</artifactId>
345                 </exclusion>
346             </exclusions>
347         </dependency>
348         <dependency>
349             <groupId>com.datastax.cassandra</groupId>
350             <artifactId>cassandra-driver-mapping</artifactId>
351             <version>${cassandra.driver.version}</version>
352             <scope>provided</scope>
353         </dependency>
354         <!-- CASSANDRA END -->
355
356         <dependency>
357             <groupId>org.hamcrest</groupId>
358             <artifactId>hamcrest</artifactId>
359             <version>${hamcrest.version}</version>
360             <scope>test</scope>
361         </dependency>
362
363         <dependency>
364             <groupId>org.hamcrest</groupId>
365             <artifactId>hamcrest-library</artifactId>
366             <version>${hamcrest.version}</version>
367             <scope>test</scope>
368         </dependency>
369
370         <dependency>
371             <groupId>org.junit.jupiter</groupId>
372             <artifactId>junit-jupiter</artifactId>
373             <version>${junitJupiter.version}</version>
374             <scope>test</scope>
375         </dependency>
376
377         <dependency>
378             <groupId>org.mockito</groupId>
379             <artifactId>mockito-junit-jupiter</artifactId>
380             <version>${mockitoJupiter.version}</version>
381             <scope>test</scope>
382         </dependency>
383
384         <dependency>
385             <groupId>org.assertj</groupId>
386             <artifactId>assertj-core</artifactId>
387             <scope>test</scope>
388         </dependency>
389
390         <dependency>
391             <groupId>org.springframework</groupId>
392             <artifactId>spring-test</artifactId>
393             <version>${spring.version}</version>
394             <scope>test</scope>
395         </dependency>
396
397         <dependency>
398             <groupId>org.aspectj</groupId>
399             <artifactId>aspectjrt</artifactId>
400             <version>${aspectj.version}</version>
401             <scope>test</scope>
402         </dependency>
403
404         <dependency>
405             <groupId>org.aspectj</groupId>
406             <artifactId>aspectjweaver</artifactId>
407             <version>${aspectj.version}</version>
408             <scope>test</scope>
409         </dependency>
410
411         <dependency>
412             <groupId>org.springframework</groupId>
413             <artifactId>spring-web</artifactId>
414             <version>${spring.version}</version>
415             <scope>test</scope>
416             <exclusions>
417                 <exclusion>
418                     <groupId>org.springframework</groupId>
419                     <artifactId>spring-core</artifactId>
420                 </exclusion>
421             </exclusions>
422         </dependency>
423
424         <dependency>
425             <groupId>org.springframework</groupId>
426             <artifactId>spring-tx</artifactId>
427             <scope>test</scope>
428             <version>${spring.version}</version>
429             <exclusions>
430                 <exclusion>
431                     <groupId>org.springframework</groupId>
432                     <artifactId>spring-core</artifactId>
433                 </exclusion>
434             </exclusions>
435         </dependency>
436
437         <dependency>
438             <groupId>org.springframework</groupId>
439             <artifactId>spring-expression</artifactId>
440             <scope>test</scope>
441             <version>${spring.version}</version>
442         </dependency>
443
444         <dependency>
445             <groupId>org.apache.commons</groupId>
446             <artifactId>commons-jci-core</artifactId>
447             <version>${commons-jci-core.version}</version>
448             <scope>test</scope>
449             <exclusions>
450                 <exclusion>
451                     <groupId>commons-io</groupId>
452                     <artifactId>commons-io</artifactId>
453                 </exclusion>
454             </exclusions>
455         </dependency>
456
457         <dependency>
458             <groupId>org.awaitility</groupId>
459             <artifactId>awaitility</artifactId>
460             <version>${awaitility.version}</version>
461             <scope>test</scope>
462         </dependency>
463
464         <dependency>
465             <groupId>org.codehaus.groovy</groupId>
466             <artifactId>groovy</artifactId>
467         </dependency>
468
469         <dependency>
470             <groupId>io.netty</groupId>
471             <artifactId>netty-all</artifactId>
472         </dependency>
473         <dependency>
474             <groupId>org.apache.commons</groupId>
475             <artifactId>commons-collections4</artifactId>
476             <version>${commons.collections.version}</version>
477         </dependency>
478
479         <dependency>
480             <groupId>io.netty</groupId>
481             <artifactId>netty-handler</artifactId>
482         </dependency>
483         <dependency>
484             <groupId>org.projectlombok</groupId>
485             <artifactId>lombok</artifactId>
486             <version>${lombok.version}</version>
487         </dependency>
488         <dependency>
489             <groupId>joda-time</groupId>
490             <artifactId>joda-time</artifactId>
491             <version>${joda.time.version}</version>
492         </dependency>
493         <dependency>
494             <groupId>org.openecomp.sdc.core</groupId>
495             <artifactId>openecomp-tosca-lib</artifactId>
496             <version>${project.version}</version>
497             <exclusions>
498                 <exclusion>
499                     <groupId>com.fasterxml.jackson.core</groupId>
500                     <artifactId>jackson-core</artifactId>
501                 </exclusion>
502                 <exclusion>
503                     <groupId>org.springframework</groupId>
504                     <artifactId>spring-core</artifactId>
505                 </exclusion>
506                 <exclusion>
507                     <groupId>com.fasterxml.jackson.core</groupId>
508                     <artifactId>jackson-databind</artifactId>
509                 </exclusion>
510             </exclusions>
511         </dependency>
512         <dependency>
513             <groupId>com.vdurmont</groupId>
514             <artifactId>semver4j</artifactId>
515             <version>3.1.0</version>
516         </dependency>
517
518         <dependency>
519             <groupId>com.googlecode.jmapper-framework</groupId>
520             <artifactId>jmapper-core</artifactId>
521             <version>${jMapper.version}</version>
522             <exclusions>
523                 <exclusion>
524                     <groupId>com.thoughtworks.xstream</groupId>
525                     <artifactId>xstream</artifactId>
526                 </exclusion>
527             </exclusions>
528         </dependency>
529
530     </dependencies>
531     <build>
532         <plugins>
533             <plugin>
534                 <groupId>org.apache.maven.plugins</groupId>
535                 <artifactId>maven-deploy-plugin</artifactId>
536                 <configuration>
537                     <skip>false</skip>
538                 </configuration>
539             </plugin>
540             <plugin>
541                 <groupId>com.github.sylvainlaurent.maven</groupId>
542                 <artifactId>yaml-json-validator-maven-plugin</artifactId>
543                 <executions>
544                     <execution>
545                         <id>validate</id>
546                         <phase>validate</phase>
547                         <goals>
548                             <goal>validate</goal>
549                         </goals>
550                         <configuration>
551                             <validationSets>
552                                 <validationSet>
553                                     <includes>
554                                         <include>src/main/resources/**/*.y*ml</include>
555                                         <include>src/test/resources/**/*.y*ml</include>
556                                     </includes>
557                                 </validationSet>
558                                 <validationSet>
559                                     <includes>
560                                         <include>src/main/resources/**/*.json</include>
561                                         <include>src/test/resources/**/*.json</include>
562                                     </includes>
563                                 </validationSet>
564                             </validationSets>
565                             <skip>${skipYamlJsonValidator}</skip>
566                         </configuration>
567                     </execution>
568                 </executions>
569             </plugin>
570         </plugins>
571     </build>
572 </project>