Update to 1.8.3
[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.8.3-SNAPSHOT</version>
34   </parent>
35
36   <dependencies>
37
38     <!-- Common of SDC -->
39     <dependency>
40       <groupId>org.openecomp.sdc</groupId>
41       <artifactId>common-app-api</artifactId>
42       <version>${project.version}</version>
43       <scope>provided</scope>
44     </dependency>
45
46     <dependency>
47       <groupId>org.openecomp.sdc.be</groupId>
48       <artifactId>common-be</artifactId>
49       <version>${project.version}</version>
50       <scope>provided</scope>
51     </dependency>
52
53     <dependency>
54       <groupId>ch.qos.logback</groupId>
55       <artifactId>logback-classic</artifactId>
56       <version>${logback.version}</version>
57       <scope>provided</scope>
58     </dependency>
59
60     <!-- SPRING -->
61     <dependency>
62       <groupId>org.springframework</groupId>
63       <artifactId>spring-context</artifactId>
64       <version>${spring.version}</version>
65       <scope>provided</scope>
66     </dependency>
67
68     <dependency>
69       <groupId>org.springframework</groupId>
70       <artifactId>spring-core</artifactId>
71       <version>${spring.version}</version>
72       <scope>provided</scope>
73     </dependency>
74
75     <dependency>
76       <groupId>org.springframework</groupId>
77       <artifactId>spring-context-support</artifactId>
78       <version>${spring.version}</version>
79       <scope>provided</scope>
80     </dependency>
81
82     <dependency>
83       <groupId>org.springframework</groupId>
84       <artifactId>spring-beans</artifactId>
85       <version>${spring.version}</version>
86       <scope>provided</scope>
87     </dependency>
88
89     <dependency>
90       <groupId>org.aspectj</groupId>
91       <artifactId>aspectjrt</artifactId>
92       <version>${aspectj.version}</version>
93     </dependency>
94
95     <dependency>
96       <groupId>org.aspectj</groupId>
97       <artifactId>aspectjweaver</artifactId>
98       <version>${aspectj.version}</version>
99     </dependency>
100
101     <dependency>
102       <groupId>org.springframework</groupId>
103       <artifactId>spring-aop</artifactId>
104       <version>${spring.version}</version>
105     </dependency>
106
107     <dependency>
108       <groupId>org.springframework</groupId>
109       <artifactId>spring-tx</artifactId>
110       <version>${spring.version}</version>
111     </dependency>
112
113     <dependency>
114       <groupId>com.fasterxml.jackson.core</groupId>
115       <artifactId>jackson-databind</artifactId>
116       <version>${jackson.version}</version>
117       <exclusions>
118         <exclusion>
119           <groupId>com.fasterxml.jackson.core</groupId>
120           <artifactId>jackson-core</artifactId>
121         </exclusion>
122       </exclusions>
123     </dependency>
124
125     <dependency>
126       <groupId>com.fasterxml.jackson.core</groupId>
127       <artifactId>jackson-core</artifactId>
128       <version>${jackson.version}</version>
129     </dependency>
130
131     <dependency>
132       <groupId>com.googlecode.json-simple</groupId>
133       <artifactId>json-simple</artifactId>
134       <version>${json-simple.version}</version>
135       <scope>provided</scope>
136     </dependency>
137
138     <dependency>
139       <groupId>org.apache.lucene</groupId>
140       <artifactId>lucene-regex</artifactId>
141       <version>${regex.version}</version>
142     </dependency>
143
144     <dependency>
145       <groupId>org.jmockit</groupId>
146       <artifactId>jmockit</artifactId>
147       <scope>test</scope>
148     </dependency>
149
150     <dependency>
151       <groupId>com.google.code.bean-matchers</groupId>
152       <artifactId>bean-matchers</artifactId>
153       <version>${bean-matchers.version}</version>
154       <scope>test</scope>
155     </dependency>
156
157     <dependency>
158       <groupId>org.yaml</groupId>
159       <artifactId>snakeyaml</artifactId>
160       <version>${snakeyaml.version}</version>
161       <scope>provided</scope>
162     </dependency>
163
164     <dependency>
165       <groupId>com.google.code.gson</groupId>
166       <artifactId>gson</artifactId>
167       <version>${gson.version}</version>
168       <scope>provided</scope>
169     </dependency>
170
171     <dependency>
172       <groupId>org.functionaljava</groupId>
173       <artifactId>functionaljava</artifactId>
174       <version>${functionaljava.version}</version>
175       <scope>provided</scope>
176     </dependency>
177
178     <!-- http client -->
179     <dependency>
180       <groupId>org.apache.httpcomponents</groupId>
181       <artifactId>httpclient</artifactId>
182       <version>${httpclient.version}</version>
183       <scope>provided</scope>
184     </dependency>
185
186     <dependency>
187       <groupId>org.apache.httpcomponents</groupId>
188       <artifactId>httpcore</artifactId>
189       <version>${httpcore.version}</version>
190       <scope>provided</scope>
191     </dependency>
192
193     <dependency>
194       <groupId>com.google.guava</groupId>
195       <artifactId>guava</artifactId>
196       <version>${guava.version}</version>
197       <scope>provided</scope>
198     </dependency>
199
200     <!-- TEST -->
201     <dependency>
202       <groupId>org.assertj</groupId>
203       <artifactId>assertj-core</artifactId>
204       <scope>test</scope>
205     </dependency>
206
207     <dependency>
208       <groupId>org.springframework</groupId>
209       <artifactId>spring-test</artifactId>
210       <version>${spring.version}</version>
211       <scope>test</scope>
212     </dependency>
213
214     <dependency>
215       <groupId>org.junit.jupiter</groupId>
216       <artifactId>junit-jupiter</artifactId>
217       <version>${junitJupiter.version}</version>
218       <scope>test</scope>
219     </dependency>
220
221     <dependency>
222       <groupId>org.mockito</groupId>
223       <artifactId>mockito-junit-jupiter</artifactId>
224       <version>${mockitoJupiter.version}</version>
225       <scope>test</scope>
226     </dependency>
227
228     <dependency>
229       <groupId>org.apache.commons</groupId>
230       <artifactId>commons-jci-core</artifactId>
231       <version>${commons-jci-core.version}</version>
232       <scope>test</scope>
233     </dependency>
234
235     <dependency>
236       <groupId>org.springframework</groupId>
237       <artifactId>spring-expression</artifactId>
238       <version>${spring.version}</version>
239       <scope>test</scope>
240     </dependency>
241
242     <dependency>
243       <groupId>org.janusgraph</groupId>
244       <artifactId>janusgraph-core</artifactId>
245       <version>${janusgraph.version}</version>
246       <scope>provided</scope>
247       <exclusions>
248         <exclusion>
249           <artifactId>gremlin-groovy</artifactId>
250           <groupId>org.apache.tinkerpop</groupId>
251         </exclusion>
252         <exclusion>
253           <groupId>org.json</groupId>
254           <artifactId>json</artifactId>
255         </exclusion>
256         <exclusion>
257           <artifactId>slf4j-log4j12</artifactId>
258           <groupId>org.slf4j</groupId>
259         </exclusion>
260         <exclusion>
261           <artifactId>commons-collections</artifactId>
262           <groupId>commons-collections</groupId>
263         </exclusion>
264         <exclusion>
265           <artifactId>groovy</artifactId>
266           <groupId>org.codehaus.groovy</groupId>
267         </exclusion>
268       </exclusions>
269     </dependency>
270
271     <dependency>
272       <groupId>org.janusgraph</groupId>
273       <artifactId>janusgraph-cassandra</artifactId>
274       <version>${janusgraph.version}</version>
275       <scope>provided</scope>
276       <exclusions>
277         <exclusion>
278           <groupId>org.slf4j</groupId>
279           <artifactId>slf4j-log4j12</artifactId>
280         </exclusion>
281       </exclusions>
282     </dependency>
283
284     <dependency>
285       <groupId>org.apache.commons</groupId>
286       <artifactId>commons-lang3</artifactId>
287       <version>${lang3.version}</version>
288       <scope>provided</scope>
289     </dependency>
290
291     <!-- CASSANDRA -->
292     <dependency>
293       <groupId>com.datastax.cassandra</groupId>
294       <artifactId>cassandra-driver-core</artifactId>
295       <version>${cassandra.driver.version}</version>
296       <scope>provided</scope>
297       <exclusions>
298         <exclusion>
299           <groupId>io.netty</groupId>
300           <artifactId>netty-handler</artifactId>
301         </exclusion>
302       </exclusions>
303     </dependency>
304     <dependency>
305       <groupId>com.datastax.cassandra</groupId>
306       <artifactId>cassandra-driver-mapping</artifactId>
307       <version>${cassandra.driver.version}</version>
308       <scope>provided</scope>
309     </dependency>
310     <dependency>
311       <groupId>com.datastax.oss</groupId>
312       <artifactId>java-driver-core</artifactId>
313       <version>${java.driver.core.version}</version>
314       <exclusions>
315         <exclusion>
316           <groupId>org.apache.tinkerpop</groupId>
317           <artifactId>gremlin-driver</artifactId>
318         </exclusion>
319       </exclusions>
320     </dependency>
321     <dependency>
322       <groupId>org.cassandraunit</groupId>
323       <artifactId>cassandra-unit</artifactId>
324       <version>${cassandra.unit.version}</version>
325       <scope>test</scope>
326       <exclusions>
327         <exclusion>
328           <groupId>org.apache.cassandra</groupId>
329           <artifactId>cassandra-all</artifactId>
330         </exclusion>
331         <exclusion>
332           <groupId>org.apache.thrift</groupId>
333           <artifactId>libthrift</artifactId>
334         </exclusion>
335       </exclusions>
336     </dependency>
337     <dependency>
338       <groupId>org.apache.cassandra</groupId>
339       <artifactId>cassandra-all</artifactId>
340       <version>3.11.3</version>
341       <scope>test</scope>
342     </dependency>
343     <!-- CASSANDRA END -->
344
345     <dependency>
346       <groupId>org.codehaus.groovy</groupId>
347       <artifactId>groovy</artifactId>
348     </dependency>
349       <dependency>
350           <groupId>org.togglz</groupId>
351           <artifactId>togglz-testing</artifactId>
352           <version>${togglz.version}</version>
353           <scope>test</scope>
354       </dependency>
355   </dependencies>
356
357   <build>
358     <plugins>
359       <plugin>
360         <groupId>org.apache.maven.plugins</groupId>
361         <artifactId>maven-surefire-plugin</artifactId>
362         <configuration>
363           <forkCount>1</forkCount>
364         </configuration>
365       </plugin>
366     </plugins>
367     <pluginManagement>
368       <plugins>
369         <!--This plugin's configuration is used to store Eclipse m2e settings
370           only. It has no influence on the Maven build itself. -->
371         <plugin>
372           <groupId>org.eclipse.m2e</groupId>
373           <artifactId>lifecycle-mapping</artifactId>
374           <version>1.0.0</version>
375           <configuration>
376             <lifecycleMappingMetadata>
377               <pluginExecutions>
378                 <pluginExecution>
379                   <pluginExecutionFilter>
380                     <groupId>fr.fastconnect</groupId>
381                     <artifactId>plantuml-maven-plugin</artifactId>
382                     <versionRange>[1.0.0,)</versionRange>
383                     <goals>
384                       <goal>plant</goal>
385                     </goals>
386                   </pluginExecutionFilter>
387                   <action>
388                     <ignore/>
389                   </action>
390                 </pluginExecution>
391               </pluginExecutions>
392             </lifecycleMappingMetadata>
393           </configuration>
394         </plugin>
395         <plugin>
396           <groupId>com.github.sylvainlaurent.maven</groupId>
397           <artifactId>yaml-json-validator-maven-plugin</artifactId>
398           <executions>
399             <execution>
400               <id>validate</id>
401               <phase>validate</phase>
402               <goals>
403                 <goal>validate</goal>
404               </goals>
405               <configuration>
406                 <validationSets>
407                   <validationSet>
408                     <includes>
409                       <include>src/main/resources/**/*.y*ml</include>
410                       <include>src/test/resources/**/*.y*ml</include>
411                     </includes>
412                   </validationSet>
413                   <validationSet>
414                     <includes>
415                       <include>src/main/resources/**/*.json</include>
416                       <include>src/test/resources/**/*.json</include>
417                     </includes>
418                   </validationSet>
419                 </validationSets>
420                 <skip>${skipYamlJsonValidator}</skip>
421               </configuration>
422             </execution>
423           </executions>
424         </plugin>
425       </plugins>
426     </pluginManagement>
427
428   </build>
429 </project>