Fix broken local build
[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.7.2-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           <groupId>org.json</groupId>
250           <artifactId>json</artifactId>
251         </exclusion>
252         <exclusion>
253           <artifactId>slf4j-log4j12</artifactId>
254           <groupId>org.slf4j</groupId>
255         </exclusion>
256         <exclusion>
257           <artifactId>commons-collections</artifactId>
258           <groupId>commons-collections</groupId>
259         </exclusion>
260         <exclusion>
261           <artifactId>groovy</artifactId>
262           <groupId>org.codehaus.groovy</groupId>
263         </exclusion>
264       </exclusions>
265     </dependency>
266
267     <dependency>
268       <groupId>org.janusgraph</groupId>
269       <artifactId>janusgraph-cassandra</artifactId>
270       <version>${janusgraph.version}</version>
271       <scope>provided</scope>
272       <exclusions>
273         <exclusion>
274           <groupId>org.slf4j</groupId>
275           <artifactId>slf4j-log4j12</artifactId>
276         </exclusion>
277       </exclusions>
278     </dependency>
279
280     <dependency>
281       <groupId>org.apache.commons</groupId>
282       <artifactId>commons-lang3</artifactId>
283       <version>${lang3.version}</version>
284       <scope>provided</scope>
285     </dependency>
286
287     <!-- CASSANDRA -->
288     <dependency>
289       <groupId>com.datastax.cassandra</groupId>
290       <artifactId>cassandra-driver-core</artifactId>
291       <version>${cassandra.driver.version}</version>
292       <scope>provided</scope>
293       <exclusions>
294         <exclusion>
295           <groupId>io.netty</groupId>
296           <artifactId>netty-handler</artifactId>
297         </exclusion>
298       </exclusions>
299     </dependency>
300     <dependency>
301       <groupId>com.datastax.cassandra</groupId>
302       <artifactId>cassandra-driver-mapping</artifactId>
303       <version>${cassandra.driver.version}</version>
304       <scope>provided</scope>
305     </dependency>
306     <dependency>
307       <groupId>com.datastax.oss</groupId>
308       <artifactId>java-driver-core</artifactId>
309       <version>${java.driver.core.version}</version>
310     </dependency>
311     <dependency>
312       <groupId>org.cassandraunit</groupId>
313       <artifactId>cassandra-unit</artifactId>
314       <version>${cassandra.unit.version}</version>
315       <scope>test</scope>
316       <exclusions>
317         <exclusion>
318           <groupId>org.apache.cassandra</groupId>
319           <artifactId>cassandra-all</artifactId>
320         </exclusion>
321         <exclusion>
322           <groupId>org.apache.thrift</groupId>
323           <artifactId>libthrift</artifactId>
324         </exclusion>
325       </exclusions>
326     </dependency>
327     <dependency>
328       <groupId>org.apache.cassandra</groupId>
329       <artifactId>cassandra-all</artifactId>
330       <version>3.11.3</version>
331       <scope>test</scope>
332     </dependency>
333     <!-- CASSANDRA END -->
334
335     <dependency>
336       <groupId>org.codehaus.groovy</groupId>
337       <artifactId>groovy</artifactId>
338     </dependency>
339       <dependency>
340           <groupId>org.togglz</groupId>
341           <artifactId>togglz-testing</artifactId>
342           <version>${togglz.version}</version>
343           <scope>test</scope>
344       </dependency>
345   </dependencies>
346
347   <build>
348     <plugins>
349       <plugin>
350         <groupId>org.apache.maven.plugins</groupId>
351         <artifactId>maven-surefire-plugin</artifactId>
352         <configuration>
353           <forkCount>1</forkCount>
354         </configuration>
355       </plugin>
356     </plugins>
357     <pluginManagement>
358       <plugins>
359         <!--This plugin's configuration is used to store Eclipse m2e settings
360           only. It has no influence on the Maven build itself. -->
361         <plugin>
362           <groupId>org.eclipse.m2e</groupId>
363           <artifactId>lifecycle-mapping</artifactId>
364           <version>1.0.0</version>
365           <configuration>
366             <lifecycleMappingMetadata>
367               <pluginExecutions>
368                 <pluginExecution>
369                   <pluginExecutionFilter>
370                     <groupId>fr.fastconnect</groupId>
371                     <artifactId>plantuml-maven-plugin</artifactId>
372                     <versionRange>[1.0.0,)</versionRange>
373                     <goals>
374                       <goal>plant</goal>
375                     </goals>
376                   </pluginExecutionFilter>
377                   <action>
378                     <ignore/>
379                   </action>
380                 </pluginExecution>
381               </pluginExecutions>
382             </lifecycleMappingMetadata>
383           </configuration>
384         </plugin>
385         <plugin>
386           <groupId>com.github.sylvainlaurent.maven</groupId>
387           <artifactId>yaml-json-validator-maven-plugin</artifactId>
388           <executions>
389             <execution>
390               <id>validate</id>
391               <phase>validate</phase>
392               <goals>
393                 <goal>validate</goal>
394               </goals>
395               <configuration>
396                 <validationSets>
397                   <validationSet>
398                     <includes>
399                       <include>src/main/resources/**/*.y*ml</include>
400                       <include>src/test/resources/**/*.y*ml</include>
401                     </includes>
402                   </validationSet>
403                   <validationSet>
404                     <includes>
405                       <include>src/main/resources/**/*.json</include>
406                       <include>src/test/resources/**/*.json</include>
407                     </includes>
408                   </validationSet>
409                 </validationSets>
410                 <skip>${skipYamlJsonValidator}</skip>
411               </configuration>
412             </execution>
413           </executions>
414         </plugin>
415       </plugins>
416     </pluginManagement>
417
418   </build>
419 </project>