blob: 516045a056078095b81409d56bdf6a71548d80d3 [file] [log] [blame]
Piotr Darosz20da3d02018-06-15 08:28:00 +02001<!--
2============LICENSE_START=======================================================
3SDC
4================================================================================
5Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6================================================================================
7Licensed under the Apache License, Version 2.0 (the "License");
8you may not use this file except in compliance with the License.
9You may obtain a copy of the License at
10 *
11 http://www.apache.org/licenses/LICENSE-2.0
12 *
13Unless required by applicable law or agreed to in writing, software
14distributed under the License is distributed on an "AS IS" BASIS,
15WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16See the License for the specific language governing permissions and
17limitations under the License.
18============LICENSE_END=========================================================
19Modifications copyright (c) 2018 Nokia
20================================================================================
21-->
vasraza36531c2020-04-29 18:39:35 +010022<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>
Michael Lando451a3402017-02-19 10:28:42 +020026
vasraza36531c2020-04-29 18:39:35 +010027 <groupId>org.openecomp.sdc.be</groupId>
28 <artifactId>catalog-dao</artifactId>
Michael Lando451a3402017-02-19 10:28:42 +020029
vasraza36531c2020-04-29 18:39:35 +010030 <parent>
31 <groupId>org.openecomp.sdc</groupId>
32 <artifactId>sdc-main</artifactId>
vasraz0dea7122020-10-26 12:53:23 +000033 <version>1.7.2-SNAPSHOT</version>
vasraza36531c2020-04-29 18:39:35 +010034 </parent>
Michael Lando451a3402017-02-19 10:28:42 +020035
vasraza36531c2020-04-29 18:39:35 +010036 <dependencies>
Michael Lando5b593492018-07-29 16:13:45 +030037
vasraza36531c2020-04-29 18:39:35 +010038 <!-- 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>
Michael Lando2e0ef972017-02-28 01:44:21 +020045
vasraza36531c2020-04-29 18:39:35 +010046 <dependency>
47 <groupId>org.openecomp.sdc.be</groupId>
48 <artifactId>common-be</artifactId>
49 <version>${project.version}</version>
50 <scope>provided</scope>
51 </dependency>
Michael Landoc0ac0152017-02-27 23:48:43 +020052
vasraza36531c2020-04-29 18:39:35 +010053 <dependency>
54 <groupId>ch.qos.logback</groupId>
55 <artifactId>logback-classic</artifactId>
56 <version>${logback.version}</version>
57 <scope>provided</scope>
58 </dependency>
Michael Landoc0ac0152017-02-27 23:48:43 +020059
vasraza36531c2020-04-29 18:39:35 +010060 <!-- SPRING -->
61 <dependency>
62 <groupId>org.springframework</groupId>
63 <artifactId>spring-context</artifactId>
64 <version>${spring.version}</version>
65 <scope>provided</scope>
66 </dependency>
Tomasz Golabekc8fcbbc2019-07-09 08:42:59 +020067
vasraza36531c2020-04-29 18:39:35 +010068 <dependency>
69 <groupId>org.springframework</groupId>
70 <artifactId>spring-core</artifactId>
71 <version>${spring.version}</version>
72 <scope>provided</scope>
73 </dependency>
Michael Landoc0ac0152017-02-27 23:48:43 +020074
vasraza36531c2020-04-29 18:39:35 +010075 <dependency>
76 <groupId>org.springframework</groupId>
77 <artifactId>spring-context-support</artifactId>
78 <version>${spring.version}</version>
79 <scope>provided</scope>
80 </dependency>
Michael Landoc0ac0152017-02-27 23:48:43 +020081
vasraza36531c2020-04-29 18:39:35 +010082 <dependency>
83 <groupId>org.springframework</groupId>
84 <artifactId>spring-beans</artifactId>
85 <version>${spring.version}</version>
86 <scope>provided</scope>
87 </dependency>
Michael Lando451a3402017-02-19 10:28:42 +020088
vasraza36531c2020-04-29 18:39:35 +010089 <dependency>
90 <groupId>org.aspectj</groupId>
91 <artifactId>aspectjrt</artifactId>
92 <version>${aspectj.version}</version>
93 </dependency>
Michael Lando451a3402017-02-19 10:28:42 +020094
vasraza36531c2020-04-29 18:39:35 +010095 <dependency>
96 <groupId>org.aspectj</groupId>
97 <artifactId>aspectjweaver</artifactId>
98 <version>${aspectj.version}</version>
99 </dependency>
Michael Lando5b593492018-07-29 16:13:45 +0300100
vasraza36531c2020-04-29 18:39:35 +0100101 <dependency>
102 <groupId>org.springframework</groupId>
103 <artifactId>spring-aop</artifactId>
104 <version>${spring.version}</version>
105 </dependency>
Michael Lando5b593492018-07-29 16:13:45 +0300106
vasraza36531c2020-04-29 18:39:35 +0100107 <dependency>
108 <groupId>org.springframework</groupId>
109 <artifactId>spring-tx</artifactId>
110 <version>${spring.version}</version>
111 </dependency>
Michael Lando451a3402017-02-19 10:28:42 +0200112
vasraza36531c2020-04-29 18:39:35 +0100113 <dependency>
114 <groupId>com.fasterxml.jackson.core</groupId>
115 <artifactId>jackson-databind</artifactId>
116 <version>${jackson.version}</version>
vasrazca685bb2020-06-11 17:05:29 +0100117 <exclusions>
118 <exclusion>
119 <groupId>com.fasterxml.jackson.core</groupId>
120 <artifactId>jackson-core</artifactId>
121 </exclusion>
122 </exclusions>
vasraza36531c2020-04-29 18:39:35 +0100123 </dependency>
Michael Landoa5445102018-03-04 14:53:33 +0200124
vasraza36531c2020-04-29 18:39:35 +0100125 <dependency>
126 <groupId>com.fasterxml.jackson.core</groupId>
127 <artifactId>jackson-core</artifactId>
128 <version>${jackson.version}</version>
129 </dependency>
Michael Lando5b593492018-07-29 16:13:45 +0300130
vasraza36531c2020-04-29 18:39:35 +0100131 <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>
Michael Lando451a3402017-02-19 10:28:42 +0200137
vasraza36531c2020-04-29 18:39:35 +0100138 <dependency>
139 <groupId>org.apache.lucene</groupId>
140 <artifactId>lucene-regex</artifactId>
141 <version>${regex.version}</version>
142 </dependency>
Michael Lando451a3402017-02-19 10:28:42 +0200143
vasraza36531c2020-04-29 18:39:35 +0100144 <dependency>
vasraza36531c2020-04-29 18:39:35 +0100145 <groupId>org.jmockit</groupId>
146 <artifactId>jmockit</artifactId>
147 <scope>test</scope>
148 </dependency>
Piotr Darosz00814512018-06-18 12:46:35 +0200149
vasraza36531c2020-04-29 18:39:35 +0100150 <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>
Michael Lando451a3402017-02-19 10:28:42 +0200156
vasraza36531c2020-04-29 18:39:35 +0100157 <dependency>
158 <groupId>org.yaml</groupId>
159 <artifactId>snakeyaml</artifactId>
160 <version>${snakeyaml.version}</version>
161 <scope>provided</scope>
162 </dependency>
Michael Lando451a3402017-02-19 10:28:42 +0200163
vasraza36531c2020-04-29 18:39:35 +0100164 <dependency>
165 <groupId>com.google.code.gson</groupId>
166 <artifactId>gson</artifactId>
167 <version>${gson.version}</version>
168 <scope>provided</scope>
169 </dependency>
Michael Lando451a3402017-02-19 10:28:42 +0200170
vasraza36531c2020-04-29 18:39:35 +0100171 <dependency>
172 <groupId>org.functionaljava</groupId>
173 <artifactId>functionaljava</artifactId>
174 <version>${functionaljava.version}</version>
175 <scope>provided</scope>
176 </dependency>
Michael Lando451a3402017-02-19 10:28:42 +0200177
vasraza36531c2020-04-29 18:39:35 +0100178 <!-- 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>
Michael Lando451a3402017-02-19 10:28:42 +0200185
vasraza36531c2020-04-29 18:39:35 +0100186 <dependency>
187 <groupId>org.apache.httpcomponents</groupId>
188 <artifactId>httpcore</artifactId>
189 <version>${httpcore.version}</version>
190 <scope>provided</scope>
191 </dependency>
Michael Lando451a3402017-02-19 10:28:42 +0200192
vasraza36531c2020-04-29 18:39:35 +0100193 <dependency>
194 <groupId>com.google.guava</groupId>
195 <artifactId>guava</artifactId>
196 <version>${guava.version}</version>
197 <scope>provided</scope>
198 </dependency>
Michael Landoa5445102018-03-04 14:53:33 +0200199
vasraza36531c2020-04-29 18:39:35 +0100200 <!-- TEST -->
201 <dependency>
202 <groupId>org.assertj</groupId>
203 <artifactId>assertj-core</artifactId>
204 <scope>test</scope>
205 </dependency>
Michael Lando451a3402017-02-19 10:28:42 +0200206
vasraza36531c2020-04-29 18:39:35 +0100207 <dependency>
208 <groupId>org.springframework</groupId>
209 <artifactId>spring-test</artifactId>
210 <version>${spring.version}</version>
211 <scope>test</scope>
212 </dependency>
Michael Lando451a3402017-02-19 10:28:42 +0200213
vasraza36531c2020-04-29 18:39:35 +0100214 <dependency>
215 <groupId>org.junit.jupiter</groupId>
216 <artifactId>junit-jupiter</artifactId>
217 <version>${junitJupiter.version}</version>
218 <scope>test</scope>
219 </dependency>
Baumel, Dvir (db384r)3e879322020-03-23 16:21:05 +0200220
vasraza36531c2020-04-29 18:39:35 +0100221 <dependency>
222 <groupId>org.mockito</groupId>
223 <artifactId>mockito-junit-jupiter</artifactId>
224 <version>${mockitoJupiter.version}</version>
225 <scope>test</scope>
226 </dependency>
Baumel, Dvir (db384r)3e879322020-03-23 16:21:05 +0200227
vasraza36531c2020-04-29 18:39:35 +0100228 <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>
Michael Landoed64b5e2017-06-09 03:19:04 +0300234
vasraza36531c2020-04-29 18:39:35 +0100235 <dependency>
236 <groupId>org.springframework</groupId>
237 <artifactId>spring-expression</artifactId>
238 <version>${spring.version}</version>
239 <scope>test</scope>
240 </dependency>
Michael Lando451a3402017-02-19 10:28:42 +0200241
vasraza36531c2020-04-29 18:39:35 +0100242 <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>
Michael Lando451a3402017-02-19 10:28:42 +0200266
vasraza36531c2020-04-29 18:39:35 +0100267 <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>
Michael Lando451a3402017-02-19 10:28:42 +0200279
vasraza36531c2020-04-29 18:39:35 +0100280 <dependency>
281 <groupId>org.apache.commons</groupId>
282 <artifactId>commons-lang3</artifactId>
283 <version>${lang3.version}</version>
284 <scope>provided</scope>
285 </dependency>
Michael Lando451a3402017-02-19 10:28:42 +0200286
vasraza36531c2020-04-29 18:39:35 +0100287 <!-- 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 -->
Tal Gitelmane0199372018-09-18 11:57:53 +0300334
vasraza36531c2020-04-29 18:39:35 +0100335 <dependency>
336 <groupId>org.codehaus.groovy</groupId>
337 <artifactId>groovy</artifactId>
338 </dependency>
talioa098eda2020-06-17 15:57:06 +0300339 <dependency>
340 <groupId>org.togglz</groupId>
341 <artifactId>togglz-testing</artifactId>
342 <version>${togglz.version}</version>
343 <scope>test</scope>
344 </dependency>
vasraza36531c2020-04-29 18:39:35 +0100345 </dependencies>
Michael Lando451a3402017-02-19 10:28:42 +0200346
vasraza36531c2020-04-29 18:39:35 +0100347 <build>
sebdet5b057082020-09-01 23:47:27 +0200348 <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>
vasraza36531c2020-04-29 18:39:35 +0100357 <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>
JulienBe6bd3d3a2020-06-24 15:35:23 +0200410 <skip>${skipYamlJsonValidator}</skip>
vasraza36531c2020-04-29 18:39:35 +0100411 </configuration>
412 </execution>
413 </executions>
414 </plugin>
415 </plugins>
416 </pluginManagement>
sebdet5b057082020-09-01 23:47:27 +0200417
vasraza36531c2020-04-29 18:39:35 +0100418 </build>
JulienBe56f99ec2020-06-24 17:31:27 +0200419</project>