blob: ccb8085cd0f761ce96b91bccca8171665a126857 [file] [log] [blame]
Michael Lando451a3402017-02-19 10:28:42 +02001<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
Michael Lando5b593492018-07-29 16:13:45 +03002 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
Michael Lando451a3402017-02-19 10:28:42 +02003 <modelVersion>4.0.0</modelVersion>
4
5 <groupId>org.openecomp.sdc.be</groupId>
6 <artifactId>catalog-dao</artifactId>
7
Michael Lando451a3402017-02-19 10:28:42 +02008 <parent>
9 <groupId>org.openecomp.sdc</groupId>
10 <artifactId>sdc-main</artifactId>
Michael Landod8a0dea2018-06-02 19:23:27 +030011 <version>1.3.0-SNAPSHOT</version>
Michael Lando451a3402017-02-19 10:28:42 +020012 </parent>
13
Michael Lando451a3402017-02-19 10:28:42 +020014 <dependencies>
Michael Landoed64b5e2017-06-09 03:19:04 +030015 <!-- Common of SDC -->
Michael Landoc34b77c2017-02-28 19:03:11 +020016 <dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +030017 <groupId>org.openecomp.sdc</groupId>
18 <artifactId>common-app-api</artifactId>
19 <version>${project.version}</version>
20 <scope>provided</scope>
Michael Landoc34b77c2017-02-28 19:03:11 +020021 </dependency>
Michael Lando5b593492018-07-29 16:13:45 +030022
Michael Landoc0ac0152017-02-27 23:48:43 +020023 <dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +030024 <groupId>org.openecomp.sdc.be</groupId>
25 <artifactId>common-be</artifactId>
26 <version>${project.version}</version>
Michael Lando2e0ef972017-02-28 01:44:21 +020027 <scope>provided</scope>
28 </dependency>
29
30 <dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +030031 <groupId>ch.qos.logback</groupId>
32 <artifactId>logback-classic</artifactId>
Michael Lando5b593492018-07-29 16:13:45 +030033 <version>${logback.version}</version>
Michael Landoc0ac0152017-02-27 23:48:43 +020034 <scope>provided</scope>
35 </dependency>
36
37 <dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +030038 <groupId>org.elasticsearch</groupId>
39 <artifactId>elasticsearch</artifactId>
Michael Landoa5445102018-03-04 14:53:33 +020040 <version>${elastic-search.version}</version>
Michael Landoed64b5e2017-06-09 03:19:04 +030041 <scope>provided</scope>
42 </dependency>
43
44 <dependency>
45 <groupId>org.elasticsearch.plugin</groupId>
46 <artifactId>shield</artifactId>
47 <version>${elastic-search.version}</version>
48 <scope>provided</scope>
49 </dependency>
50
51 <!-- SPRING -->
52 <dependency>
Michael Landoc0ac0152017-02-27 23:48:43 +020053 <groupId>org.springframework</groupId>
54 <artifactId>spring-context</artifactId>
55 <version>${spring.version}</version>
56 <scope>provided</scope>
57 </dependency>
58
59 <dependency>
60 <groupId>org.springframework</groupId>
61 <artifactId>spring-context-support</artifactId>
62 <version>${spring.version}</version>
63 <scope>provided</scope>
64 </dependency>
65
66 <dependency>
67 <groupId>org.springframework</groupId>
Michael Landoed64b5e2017-06-09 03:19:04 +030068 <artifactId>spring-beans</artifactId>
Michael Landoc0ac0152017-02-27 23:48:43 +020069 <version>${spring.version}</version>
70 <scope>provided</scope>
71 </dependency>
72
73 <dependency>
Michael Lando451a3402017-02-19 10:28:42 +020074 <groupId>org.aspectj</groupId>
75 <artifactId>aspectjrt</artifactId>
76 <version>${aspectj.version}</version>
77 </dependency>
78
79 <dependency>
80 <groupId>org.aspectj</groupId>
81 <artifactId>aspectjweaver</artifactId>
82 <version>${aspectj.version}</version>
83 </dependency>
84
85 <dependency>
Michael Lando5b593492018-07-29 16:13:45 +030086 <groupId>org.springframework</groupId>
87 <artifactId>spring-aop</artifactId>
88 <version>${spring.version}</version>
89 </dependency>
90
91 <dependency>
92 <groupId>org.springframework</groupId>
93 <artifactId>spring-tx</artifactId>
94 <version>${spring.version}</version>
95 </dependency>
96
97 <dependency>
98 <groupId>com.fasterxml.jackson.core</groupId>
Michael Lando451a3402017-02-19 10:28:42 +020099 <artifactId>jackson-databind</artifactId>
Michael Landoc34b77c2017-02-28 19:03:11 +0200100 <version>${jackson.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200101 </dependency>
102
103 <dependency>
Michael Landoa5445102018-03-04 14:53:33 +0200104 <groupId>com.fasterxml.jackson.core</groupId>
105 <artifactId>jackson-core</artifactId>
106 <version>${jackson.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200107 </dependency>
Michael Landoa5445102018-03-04 14:53:33 +0200108
Michael Lando451a3402017-02-19 10:28:42 +0200109 <dependency>
110 <groupId>com.googlecode.json-simple</groupId>
111 <artifactId>json-simple</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +0300112 <version>${json-simple.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200113 <scope>provided</scope>
Michael Lando451a3402017-02-19 10:28:42 +0200114 </dependency>
Michael Lando5b593492018-07-29 16:13:45 +0300115
Michael Lando451a3402017-02-19 10:28:42 +0200116 <dependency>
117 <groupId>org.apache.lucene</groupId>
118 <artifactId>lucene-regex</artifactId>
119 <version>${regex.version}</version>
120 </dependency>
121
122 <dependency>
123 <groupId>org.mockito</groupId>
Tal Gitelman51d50f02017-12-10 18:55:03 +0200124 <artifactId>mockito-core</artifactId>
Michael Landoc34b77c2017-02-28 19:03:11 +0200125 <scope>test</scope>
Michael Lando451a3402017-02-19 10:28:42 +0200126 </dependency>
127
128 <dependency>
Tal Gitelman83b2fd72018-05-27 17:49:33 +0300129 <groupId>org.jmockit</groupId>
130 <artifactId>jmockit</artifactId>
Tal Gitelman83b2fd72018-05-27 17:49:33 +0300131 <scope>test</scope>
132 </dependency>
133
134 <dependency>
Piotr Darosz00814512018-06-18 12:46:35 +0200135 <groupId>com.google.code.bean-matchers</groupId>
136 <artifactId>bean-matchers</artifactId>
137 <version>${bean-matchers.version}</version>
138 <scope>test</scope>
139 </dependency>
140
141 <dependency>
Michael Lando451a3402017-02-19 10:28:42 +0200142 <groupId>org.yaml</groupId>
143 <artifactId>snakeyaml</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +0300144 <version>${snakeyaml.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200145 <scope>provided</scope>
146 </dependency>
147
148 <dependency>
149 <groupId>com.google.code.gson</groupId>
150 <artifactId>gson</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +0300151 <version>${gson.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200152 <scope>provided</scope>
153 </dependency>
154
155 <dependency>
156 <groupId>org.functionaljava</groupId>
157 <artifactId>functionaljava</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +0300158 <version>${functionaljava.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200159 <scope>provided</scope>
160 </dependency>
161
162 <!-- http client -->
163 <dependency>
164 <groupId>org.apache.httpcomponents</groupId>
165 <artifactId>httpclient</artifactId>
Michael Lando5b593492018-07-29 16:13:45 +0300166 <version>${httpclient.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200167 <scope>provided</scope>
168 </dependency>
169
170 <dependency>
171 <groupId>org.apache.httpcomponents</groupId>
172 <artifactId>httpcore</artifactId>
Michael Landoc34b77c2017-02-28 19:03:11 +0200173 <version>${httpcore.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200174 <scope>provided</scope>
175 </dependency>
176
177 <dependency>
178 <groupId>com.google.guava</groupId>
179 <artifactId>guava</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +0300180 <version>${guava.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200181 <scope>provided</scope>
182 </dependency>
183
184 <!-- TEST -->
Michael Landoed64b5e2017-06-09 03:19:04 +0300185 <dependency>
Michael Landoa5445102018-03-04 14:53:33 +0200186 <groupId>org.assertj</groupId>
187 <artifactId>assertj-core</artifactId>
188 <scope>test</scope>
189 </dependency>
190
191 <dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +0300192 <groupId>org.springframework</groupId>
193 <artifactId>spring-test</artifactId>
194 <version>${spring.version}</version>
195 <scope>test</scope>
196 </dependency>
Michael Lando451a3402017-02-19 10:28:42 +0200197
198 <dependency>
199 <groupId>junit</groupId>
200 <artifactId>junit</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +0300201 <version>${junit.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200202 <scope>test</scope>
203 </dependency>
204
205 <dependency>
206 <groupId>org.apache.commons</groupId>
207 <artifactId>commons-jci-core</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +0300208 <version>${commons-jci-core.version}</version>
209 <scope>test</scope>
210 </dependency>
211
212 <dependency>
213 <groupId>org.springframework</groupId>
214 <artifactId>spring-expression</artifactId>
215 <version>${spring.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200216 <scope>test</scope>
217 </dependency>
218
Michael Lando451a3402017-02-19 10:28:42 +0200219 <!-- TITAN -->
220 <dependency>
221 <groupId>com.thinkaurelius.titan</groupId>
222 <artifactId>titan-core</artifactId>
223 <version>${titan.version}</version>
224 <scope>provided</scope>
225 <exclusions>
226 <exclusion>
227 <groupId>org.json</groupId>
228 <artifactId>json</artifactId>
229 </exclusion>
230 <exclusion>
231 <artifactId>slf4j-log4j12</artifactId>
232 <groupId>org.slf4j</groupId>
233 </exclusion>
234 </exclusions>
235 </dependency>
236
237 <dependency>
Michael Landode67b612018-03-15 16:53:05 +0200238 <groupId>org.onap.sdc.sdc-titan-cassandra</groupId>
Michael Lando5b593492018-07-29 16:13:45 +0300239 <artifactId>sdc-titan-cassandra</artifactId>
Michael Landode67b612018-03-15 16:53:05 +0200240 <version>${sdc.titan.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200241 <scope>provided</scope>
242 <exclusions>
243 <exclusion>
244 <groupId>org.slf4j</groupId>
245 <artifactId>slf4j-log4j12</artifactId>
246 </exclusion>
247 </exclusions>
248 </dependency>
249
250 <dependency>
251 <groupId>org.apache.commons</groupId>
252 <artifactId>commons-lang3</artifactId>
Michael Landoc34b77c2017-02-28 19:03:11 +0200253 <version>${lang3.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200254 <scope>provided</scope>
255 </dependency>
Michael Lando451a3402017-02-19 10:28:42 +0200256 <!-- TITAN END -->
257
258 <!-- CASSANDRA -->
259 <dependency>
260 <groupId>com.datastax.cassandra</groupId>
261 <artifactId>cassandra-driver-core</artifactId>
262 <version>${cassandra.driver.version}</version>
263 <scope>provided</scope>
264 </dependency>
265 <dependency>
266 <groupId>com.datastax.cassandra</groupId>
267 <artifactId>cassandra-driver-mapping</artifactId>
268 <version>${cassandra.driver.version}</version>
269 <scope>provided</scope>
270 </dependency>
271 <!-- CASSANDRA END -->
Michael Lando5b593492018-07-29 16:13:45 +0300272 </dependencies>
Michael Lando451a3402017-02-19 10:28:42 +0200273
Michael Lando451a3402017-02-19 10:28:42 +0200274 <build>
275
276 <pluginManagement>
277 <plugins>
Michael Lando5b593492018-07-29 16:13:45 +0300278 <!--This plugin's configuration is used to store Eclipse m2e settings
Michael Lando451a3402017-02-19 10:28:42 +0200279 only. It has no influence on the Maven build itself. -->
280 <plugin>
281 <groupId>org.eclipse.m2e</groupId>
282 <artifactId>lifecycle-mapping</artifactId>
283 <version>1.0.0</version>
284 <configuration>
285 <lifecycleMappingMetadata>
286 <pluginExecutions>
287 <pluginExecution>
288 <pluginExecutionFilter>
289 <groupId>fr.fastconnect</groupId>
290 <artifactId>plantuml-maven-plugin</artifactId>
291 <versionRange>[1.0.0,)</versionRange>
292 <goals>
293 <goal>plant</goal>
294 </goals>
295 </pluginExecutionFilter>
296 <action>
297 <ignore />
298 </action>
299 </pluginExecution>
300 </pluginExecutions>
301 </lifecycleMappingMetadata>
302 </configuration>
303 </plugin>
dekstroza37843cb2018-05-18 14:42:24 +0100304 <plugin>
305 <groupId>com.github.sylvainlaurent.maven</groupId>
306 <artifactId>yaml-json-validator-maven-plugin</artifactId>
307 <executions>
308 <execution>
309 <id>validate</id>
310 <phase>validate</phase>
311 <goals>
312 <goal>validate</goal>
313 </goals>
314 <configuration>
315 <validationSets>
316 <validationSet>
317 <includes>
318 <include>src/main/resources/**/*.y*ml</include>
319 <include>src/test/resources/**/*.y*ml</include>
320 </includes>
321 </validationSet>
322 <validationSet>
323 <includes>
324 <include>src/main/resources/**/*.json</include>
325 <include>src/test/resources/**/*.json</include>
326 </includes>
327 </validationSet>
328 </validationSets>
329 </configuration>
330 </execution>
331 </executions>
332 </plugin>
Michael Lando451a3402017-02-19 10:28:42 +0200333 </plugins>
334 </pluginManagement>
335 </build>
Michael Lando5b593492018-07-29 16:13:45 +0300336</project>