Update version to 1.13.6-SNAPSHOT
[sdc.git] / catalog-dao / pom.xml
1 <!--
2 ============LICENSE_START=======================================================
3 SDC
4 ================================================================================
5 Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6 ================================================================================
7 Licensed under the Apache License, Version 2.0 (the "License");
8 you may not use this file except in compliance with the License.
9 You may obtain a copy of the License at
10         *
11      http://www.apache.org/licenses/LICENSE-2.0
12         *
13 Unless required by applicable law or agreed to in writing, software
14 distributed under the License is distributed on an "AS IS" BASIS,
15 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 See the License for the specific language governing permissions and
17 limitations under the License.
18 ============LICENSE_END=========================================================
19 Modifications copyright (c) 2018 Nokia
20 ================================================================================
21 -->
22 <project xmlns="http://maven.apache.org/POM/4.0.0"
23   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
24   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
25   <modelVersion>4.0.0</modelVersion>
26
27   <groupId>org.openecomp.sdc.be</groupId>
28   <artifactId>catalog-dao</artifactId>
29
30   <parent>
31     <groupId>org.openecomp.sdc</groupId>
32     <artifactId>sdc-main</artifactId>
33     <version>1.13.6-SNAPSHOT</version>
34   </parent>
35
36   <properties>
37     <thrift.version>0.13.0</thrift.version>
38     <cassandra-all.version>3.11.10</cassandra-all.version>
39   </properties>
40   <dependencies>
41
42     <!-- Common of SDC -->
43     <dependency>
44       <groupId>org.eclipse.jetty</groupId>
45       <artifactId>jetty-server</artifactId>
46       <version>${jetty.version}</version>
47       <scope>compile</scope>
48       <exclusions>
49         <exclusion>
50           <groupId>org.eclipse.jetty</groupId>
51           <artifactId>jetty-http</artifactId>
52         </exclusion>
53         <exclusion>
54           <groupId>javax.servlet</groupId>
55           <artifactId>javax.servlet-api</artifactId>
56         </exclusion>
57       </exclusions>
58     </dependency>
59     <dependency>
60       <groupId>org.eclipse.jetty</groupId>
61       <artifactId>jetty-servlet</artifactId>
62       <version>${jetty.version}</version>
63       <scope>compile</scope>
64       <exclusions>
65         <exclusion>
66           <groupId>org.eclipse.jetty</groupId>
67           <artifactId>jetty-security</artifactId>
68         </exclusion>
69       </exclusions>
70     </dependency>
71     <dependency>
72       <groupId>org.openecomp.sdc</groupId>
73       <artifactId>common-app-api</artifactId>
74       <version>${project.version}</version>
75       <scope>provided</scope>
76       <exclusions>
77         <exclusion>
78           <groupId>org.apache.httpcomponents</groupId>
79           <artifactId>httpcore</artifactId>
80         </exclusion>
81         <exclusion>
82           <groupId>org.functionaljava</groupId>
83           <artifactId>functionaljava</artifactId>
84         </exclusion>
85       </exclusions>
86     </dependency>
87
88     <dependency>
89       <groupId>org.openecomp.sdc.be</groupId>
90       <artifactId>common-be</artifactId>
91       <version>${project.version}</version>
92       <scope>provided</scope>
93       <exclusions>
94         <exclusion>
95           <groupId>org.springframework</groupId>
96           <artifactId>spring-core</artifactId>
97         </exclusion>
98       </exclusions>
99     </dependency>
100
101     <dependency>
102       <groupId>ch.qos.logback</groupId>
103       <artifactId>logback-classic</artifactId>
104       <version>${logback.version}</version>
105       <scope>provided</scope>
106     </dependency>
107
108     <!-- SPRING -->
109     <dependency>
110       <groupId>org.springframework</groupId>
111       <artifactId>spring-context</artifactId>
112       <version>${spring.version}</version>
113       <scope>provided</scope>
114       <exclusions>
115         <exclusion>
116           <groupId>org.springframework</groupId>
117           <artifactId>spring-expression</artifactId>
118         </exclusion>
119         <exclusion>
120           <groupId>org.springframework</groupId>
121           <artifactId>spring-core</artifactId>
122         </exclusion>
123       </exclusions>
124     </dependency>
125
126     <dependency>
127       <groupId>org.springframework</groupId>
128       <artifactId>spring-core</artifactId>
129       <version>${spring.version}</version>
130       <scope>provided</scope>
131     </dependency>
132
133     <dependency>
134       <groupId>org.springframework</groupId>
135       <artifactId>spring-context-support</artifactId>
136       <version>${spring.version}</version>
137       <scope>provided</scope>
138     </dependency>
139
140     <dependency>
141       <groupId>org.springframework</groupId>
142       <artifactId>spring-beans</artifactId>
143       <version>${spring.version}</version>
144       <scope>provided</scope>
145     </dependency>
146
147     <dependency>
148       <groupId>org.aspectj</groupId>
149       <artifactId>aspectjrt</artifactId>
150       <version>${aspectj.version}</version>
151     </dependency>
152
153     <dependency>
154       <groupId>org.aspectj</groupId>
155       <artifactId>aspectjweaver</artifactId>
156       <version>${aspectj.version}</version>
157     </dependency>
158
159     <dependency>
160       <groupId>org.springframework</groupId>
161       <artifactId>spring-aop</artifactId>
162       <version>${spring.version}</version>
163       <exclusions>
164         <exclusion>
165           <groupId>org.springframework</groupId>
166           <artifactId>spring-core</artifactId>
167         </exclusion>
168       </exclusions>
169     </dependency>
170
171     <dependency>
172       <groupId>org.springframework</groupId>
173       <artifactId>spring-tx</artifactId>
174       <version>${spring.version}</version>
175       <exclusions>
176         <exclusion>
177           <groupId>org.springframework</groupId>
178           <artifactId>spring-core</artifactId>
179         </exclusion>
180       </exclusions>
181     </dependency>
182
183     <dependency>
184       <groupId>com.fasterxml.jackson.core</groupId>
185       <artifactId>jackson-databind</artifactId>
186       <version>${jackson.version}</version>
187       <exclusions>
188         <exclusion>
189           <groupId>com.fasterxml.jackson.core</groupId>
190           <artifactId>jackson-core</artifactId>
191         </exclusion>
192       </exclusions>
193     </dependency>
194
195     <dependency>
196       <groupId>com.fasterxml.jackson.core</groupId>
197       <artifactId>jackson-core</artifactId>
198       <version>${jackson.version}</version>
199     </dependency>
200
201     <dependency>
202       <groupId>org.yaml</groupId>
203       <artifactId>snakeyaml</artifactId>
204       <version>${snakeyaml.version}</version>
205       <scope>provided</scope>
206     </dependency>
207
208     <dependency>
209       <groupId>com.google.code.gson</groupId>
210       <artifactId>gson</artifactId>
211       <version>${gson.version}</version>
212       <scope>provided</scope>
213     </dependency>
214
215     <dependency>
216       <groupId>org.functionaljava</groupId>
217       <artifactId>functionaljava</artifactId>
218       <version>${functionaljava.version}</version>
219       <scope>provided</scope>
220     </dependency>
221
222     <!-- http client -->
223     <dependency>
224       <groupId>org.apache.httpcomponents.client5</groupId>
225       <artifactId>httpclient5</artifactId>
226       <version>${httpclient.version}</version>
227       <scope>provided</scope>
228       <exclusions>
229         <exclusion>
230           <groupId>commons-codec</groupId>
231           <artifactId>commons-codec</artifactId>
232         </exclusion>
233         <exclusion>
234           <groupId>org.apache.httpcomponents</groupId>
235           <artifactId>httpcore</artifactId>
236         </exclusion>
237       </exclusions>
238     </dependency>
239
240     <dependency>
241       <groupId>org.apache.httpcomponents</groupId>
242       <artifactId>httpcore</artifactId>
243       <version>${httpcore.version}</version>
244       <scope>provided</scope>
245     </dependency>
246
247     <dependency>
248       <groupId>com.google.guava</groupId>
249       <artifactId>guava</artifactId>
250       <version>${guava.version}</version>
251       <scope>provided</scope>
252     </dependency>
253
254     <!-- TEST -->
255     <dependency>
256       <groupId>org.assertj</groupId>
257       <artifactId>assertj-core</artifactId>
258       <scope>test</scope>
259     </dependency>
260
261     <dependency>
262       <groupId>org.springframework</groupId>
263       <artifactId>spring-test</artifactId>
264       <version>${spring.version}</version>
265       <scope>test</scope>
266     </dependency>
267
268     <dependency>
269       <groupId>org.junit.jupiter</groupId>
270       <artifactId>junit-jupiter</artifactId>
271       <version>${junitJupiter.version}</version>
272       <scope>test</scope>
273     </dependency>
274
275     <dependency>
276       <groupId>org.mockito</groupId>
277       <artifactId>mockito-junit-jupiter</artifactId>
278       <version>${mockitoJupiter.version}</version>
279       <scope>test</scope>
280     </dependency>
281
282     <dependency>
283       <groupId>org.springframework</groupId>
284       <artifactId>spring-expression</artifactId>
285       <version>${spring.version}</version>
286       <scope>test</scope>
287     </dependency>
288
289     <dependency>
290       <groupId>org.apache.tinkerpop</groupId>
291       <artifactId>gremlin-core</artifactId>
292       <version>3.4.13</version>
293     </dependency>
294     <dependency>
295       <groupId>org.janusgraph</groupId>
296       <artifactId>janusgraph-core</artifactId>
297       <version>${janusgraph.version}</version>
298       <scope>provided</scope>
299       <exclusions>
300         <exclusion>
301           <groupId>org.apache.tinkerpop</groupId>
302           <artifactId>gremlin-groovy</artifactId>
303         </exclusion>
304         <exclusion>
305           <groupId>org.apache.tinkerpop</groupId>
306           <artifactId>gremlin-core</artifactId>
307         </exclusion>
308         <exclusion>
309           <groupId>org.json</groupId>
310           <artifactId>json</artifactId>
311         </exclusion>
312         <exclusion>
313           <artifactId>slf4j-log4j12</artifactId>
314           <groupId>org.slf4j</groupId>
315         </exclusion>
316         <exclusion>
317           <artifactId>commons-collections</artifactId>
318           <groupId>commons-collections</groupId>
319         </exclusion>
320         <exclusion>
321           <artifactId>groovy</artifactId>
322           <groupId>org.codehaus.groovy</groupId>
323         </exclusion>
324         <exclusion>
325           <groupId>commons-io</groupId>
326           <artifactId>commons-io</artifactId>
327         </exclusion>
328         <exclusion>
329           <groupId>commons-codec</groupId>
330           <artifactId>commons-codec</artifactId>
331         </exclusion>
332         <exclusion>
333           <groupId>dom4j</groupId>
334           <artifactId>dom4j</artifactId>
335         </exclusion>
336         <exclusion>
337           <groupId>org.slf4j</groupId>
338           <artifactId>jcl-over-slf4j</artifactId>
339         </exclusion>
340       </exclusions>
341     </dependency>
342
343     <dependency>
344       <groupId>org.janusgraph</groupId>
345       <artifactId>janusgraph-cassandra</artifactId>
346       <version>${janusgraph.version}</version>
347       <scope>provided</scope>
348       <exclusions>
349         <exclusion>
350           <groupId>joda-time</groupId>
351           <artifactId>joda-time</artifactId>
352         </exclusion>
353         <exclusion>
354           <groupId>org.slf4j</groupId>
355           <artifactId>slf4j-log4j12</artifactId>
356         </exclusion>
357         <exclusion>
358           <groupId>org.apache.thrift</groupId>
359           <artifactId>libthrift</artifactId>
360         </exclusion>
361         <exclusion>
362           <groupId>org.codehaus.jackson</groupId>
363           <artifactId>jackson-mapper-asl</artifactId>
364         </exclusion>
365         <exclusion>
366           <groupId>commons-codec</groupId>
367           <artifactId>commons-codec</artifactId>
368         </exclusion>
369         <exclusion>
370           <groupId>org.hibernate</groupId>
371           <artifactId>hibernate-validator</artifactId>
372         </exclusion>
373         <exclusion>
374           <groupId>javax.validation</groupId>
375           <artifactId>validation-api</artifactId>
376         </exclusion>
377       </exclusions>
378     </dependency>
379
380     <dependency>
381       <groupId>org.apache.commons</groupId>
382       <artifactId>commons-lang3</artifactId>
383       <version>${lang3.version}</version>
384       <scope>provided</scope>
385     </dependency>
386
387     <dependency>
388       <groupId>org.apache.thrift</groupId>
389       <artifactId>libthrift</artifactId>
390       <version>${thrift.version}</version>
391       <scope>test</scope>
392     </dependency>
393
394     <!-- CASSANDRA -->
395     <dependency>
396       <groupId>com.datastax.cassandra</groupId>
397       <artifactId>cassandra-driver-core</artifactId>
398       <version>${cassandra.driver.version}</version>
399       <scope>provided</scope>
400       <exclusions>
401         <exclusion>
402           <groupId>io.netty</groupId>
403           <artifactId>netty-handler</artifactId>
404         </exclusion>
405         <exclusion>
406           <groupId>com.github.jnr</groupId>
407           <artifactId>jnr-posix</artifactId>
408         </exclusion>
409       </exclusions>
410     </dependency>
411     <dependency>
412       <groupId>com.datastax.cassandra</groupId>
413       <artifactId>cassandra-driver-mapping</artifactId>
414       <version>${cassandra.driver.version}</version>
415       <scope>provided</scope>
416     </dependency>
417     <dependency>
418       <groupId>io.netty</groupId>
419       <artifactId>netty-common</artifactId>
420       <version>${netty.version}</version>
421     </dependency>
422     <dependency>
423       <groupId>com.datastax.oss</groupId>
424       <artifactId>java-driver-core</artifactId>
425       <version>${java.driver.core.version}</version>
426       <exclusions>
427         <exclusion>
428           <groupId>org.apache.tinkerpop</groupId>
429           <artifactId>gremlin-driver</artifactId>
430         </exclusion>
431         <exclusion>
432           <groupId>io.netty</groupId>
433           <artifactId>netty-common</artifactId>
434         </exclusion>
435         <exclusion>
436           <groupId>com.github.jnr</groupId>
437           <artifactId>jnr-posix</artifactId>
438         </exclusion>
439       </exclusions>
440     </dependency>
441     <dependency>
442       <groupId>org.cassandraunit</groupId>
443       <artifactId>cassandra-unit</artifactId>
444       <version>${cassandra.unit.version}</version>
445       <scope>test</scope>
446       <exclusions>
447         <exclusion>
448           <groupId>org.apache.cassandra</groupId>
449           <artifactId>cassandra-all</artifactId>
450         </exclusion>
451         <exclusion>
452           <groupId>org.apache.thrift</groupId>
453           <artifactId>libthrift</artifactId>
454         </exclusion>
455         <exclusion>
456           <groupId>net.java.dev.jna</groupId>
457           <artifactId>jna</artifactId>
458         </exclusion>
459         <exclusion>
460           <groupId>junit</groupId>
461           <artifactId>junit</artifactId>
462         </exclusion>
463       </exclusions>
464     </dependency>
465     <dependency>
466       <groupId>org.apache.cassandra</groupId>
467       <artifactId>cassandra-all</artifactId>
468       <version>${cassandra-all.version}</version>
469       <exclusions>
470         <exclusion>
471           <groupId>joda-time</groupId>
472           <artifactId>joda-time</artifactId>
473         </exclusion>
474         <exclusion>
475           <groupId>org.apache.thrift</groupId>
476           <artifactId>libthrift</artifactId>
477         </exclusion>
478         <exclusion>
479           <groupId>org.hibernate</groupId>
480           <artifactId>hibernate-validator</artifactId>
481         </exclusion>
482         <exclusion>
483           <groupId>commons-codec</groupId>
484           <artifactId>commons-codec</artifactId>
485         </exclusion>
486         <exclusion>
487           <groupId>net.java.dev.jna</groupId>
488           <artifactId>jna</artifactId>
489         </exclusion>
490         <exclusion>
491           <groupId>org.slf4j</groupId>
492           <artifactId>log4j-over-slf4j</artifactId>
493         </exclusion>
494         <exclusion>
495           <groupId>org.slf4j</groupId>
496           <artifactId>jcl-over-slf4j</artifactId>
497         </exclusion>
498       </exclusions>
499       <scope>test</scope>
500     </dependency>
501     <dependency>
502       <groupId>net.java.dev.jna</groupId>
503       <artifactId>jna</artifactId>
504       <version>5.10.0</version>
505     </dependency>
506     <!-- CASSANDRA END -->
507
508     <dependency>
509       <groupId>commons-codec</groupId>
510       <artifactId>commons-codec</artifactId>
511       <version>${commons-codec}</version>
512     </dependency>
513
514     <dependency>
515       <groupId>org.apache.groovy</groupId>
516       <artifactId>groovy</artifactId>
517       <version>${groovy.version}</version>
518     </dependency>
519     <dependency>
520       <groupId>org.togglz</groupId>
521       <artifactId>togglz-testing</artifactId>
522       <version>${togglz.version}</version>
523       <scope>test</scope>
524     </dependency>
525   </dependencies>
526
527   <build>
528     <plugins>
529       <plugin>
530         <groupId>org.apache.maven.plugins</groupId>
531         <artifactId>maven-surefire-plugin</artifactId>
532         <configuration>
533           <forkCount>1</forkCount>
534         </configuration>
535       </plugin>
536     </plugins>
537     <pluginManagement>
538       <plugins>
539         <!--This plugin's configuration is used to store Eclipse m2e settings
540           only. It has no influence on the Maven build itself. -->
541         <plugin>
542           <groupId>org.eclipse.m2e</groupId>
543           <artifactId>lifecycle-mapping</artifactId>
544           <version>1.0.0</version>
545           <configuration>
546             <lifecycleMappingMetadata>
547               <pluginExecutions>
548                 <pluginExecution>
549                   <pluginExecutionFilter>
550                     <groupId>fr.fastconnect</groupId>
551                     <artifactId>plantuml-maven-plugin</artifactId>
552                     <versionRange>[1.0.0,)</versionRange>
553                     <goals>
554                       <goal>plant</goal>
555                     </goals>
556                   </pluginExecutionFilter>
557                   <action>
558                     <ignore/>
559                   </action>
560                 </pluginExecution>
561               </pluginExecutions>
562             </lifecycleMappingMetadata>
563           </configuration>
564         </plugin>
565         <plugin>
566           <groupId>com.github.sylvainlaurent.maven</groupId>
567           <artifactId>yaml-json-validator-maven-plugin</artifactId>
568           <executions>
569             <execution>
570               <id>validate</id>
571               <phase>validate</phase>
572               <goals>
573                 <goal>validate</goal>
574               </goals>
575               <configuration>
576                 <validationSets>
577                   <validationSet>
578                     <includes>
579                       <include>src/main/resources/**/*.y*ml</include>
580                       <include>src/test/resources/**/*.y*ml</include>
581                     </includes>
582                   </validationSet>
583                   <validationSet>
584                     <includes>
585                       <include>src/main/resources/**/*.json</include>
586                       <include>src/test/resources/**/*.json</include>
587                     </includes>
588                   </validationSet>
589                 </validationSets>
590                 <skip>${skipYamlJsonValidator}</skip>
591               </configuration>
592             </execution>
593           </executions>
594         </plugin>
595       </plugins>
596     </pluginManagement>
597
598   </build>
599 </project>