blob: a6dd88a968811917ce3b7c136528193921bc36a4 [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"
2 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3 <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 Lando0ad3c802017-09-19 16:32:59 +030011 <version>1.2.0-SNAPSHOT</version>
Michael Lando451a3402017-02-19 10:28:42 +020012 </parent>
13
Michael Landoa5445102018-03-04 14:53:33 +020014 <properties>
15 <sonar.skip>true</sonar.skip>
16 </properties>
Michael Lando451a3402017-02-19 10:28:42 +020017 <dependencies>
Michael Landoed64b5e2017-06-09 03:19:04 +030018 <!-- Common of SDC -->
Michael Landoc34b77c2017-02-28 19:03:11 +020019 <dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +030020 <groupId>org.openecomp.sdc</groupId>
21 <artifactId>common-app-api</artifactId>
22 <version>${project.version}</version>
23 <scope>provided</scope>
Michael Landoc34b77c2017-02-28 19:03:11 +020024 </dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +030025
Michael Landoc0ac0152017-02-27 23:48:43 +020026 <dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +030027 <groupId>org.openecomp.sdc.be</groupId>
28 <artifactId>common-be</artifactId>
29 <version>${project.version}</version>
Michael Lando2e0ef972017-02-28 01:44:21 +020030 <scope>provided</scope>
31 </dependency>
32
33 <dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +030034 <groupId>ch.qos.logback</groupId>
35 <artifactId>logback-classic</artifactId>
36 <version>${logback.version}</version>
Michael Landoc0ac0152017-02-27 23:48:43 +020037 <scope>provided</scope>
38 </dependency>
39
40 <dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +030041 <groupId>org.elasticsearch</groupId>
42 <artifactId>elasticsearch</artifactId>
Michael Landoa5445102018-03-04 14:53:33 +020043 <version>${elastic-search.version}</version>
Michael Landoed64b5e2017-06-09 03:19:04 +030044 <scope>provided</scope>
45 </dependency>
46
47 <dependency>
48 <groupId>org.elasticsearch.plugin</groupId>
49 <artifactId>shield</artifactId>
50 <version>${elastic-search.version}</version>
51 <scope>provided</scope>
52 </dependency>
53
54 <!-- SPRING -->
55 <dependency>
Michael Landoc0ac0152017-02-27 23:48:43 +020056 <groupId>org.springframework</groupId>
57 <artifactId>spring-context</artifactId>
58 <version>${spring.version}</version>
59 <scope>provided</scope>
60 </dependency>
61
62 <dependency>
63 <groupId>org.springframework</groupId>
64 <artifactId>spring-context-support</artifactId>
65 <version>${spring.version}</version>
66 <scope>provided</scope>
67 </dependency>
68
69 <dependency>
70 <groupId>org.springframework</groupId>
Michael Landoed64b5e2017-06-09 03:19:04 +030071 <artifactId>spring-beans</artifactId>
Michael Landoc0ac0152017-02-27 23:48:43 +020072 <version>${spring.version}</version>
73 <scope>provided</scope>
74 </dependency>
75
76 <dependency>
Michael Lando451a3402017-02-19 10:28:42 +020077 <groupId>org.aspectj</groupId>
78 <artifactId>aspectjrt</artifactId>
79 <version>${aspectj.version}</version>
80 </dependency>
81
82 <dependency>
83 <groupId>org.aspectj</groupId>
84 <artifactId>aspectjweaver</artifactId>
85 <version>${aspectj.version}</version>
86 </dependency>
87
88 <dependency>
Michael Landoa5445102018-03-04 14:53:33 +020089 <groupId>com.fasterxml.jackson.core</groupId>
Michael Lando451a3402017-02-19 10:28:42 +020090 <artifactId>jackson-databind</artifactId>
Michael Landoc34b77c2017-02-28 19:03:11 +020091 <version>${jackson.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +020092 </dependency>
93
94 <dependency>
Michael Landoa5445102018-03-04 14:53:33 +020095 <groupId>com.fasterxml.jackson.core</groupId>
96 <artifactId>jackson-core</artifactId>
97 <version>${jackson.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +020098 </dependency>
Michael Landoa5445102018-03-04 14:53:33 +020099
Michael Lando451a3402017-02-19 10:28:42 +0200100 <dependency>
101 <groupId>com.googlecode.json-simple</groupId>
102 <artifactId>json-simple</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +0300103 <version>${json-simple.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200104 <scope>provided</scope>
Michael Lando451a3402017-02-19 10:28:42 +0200105 </dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +0300106
Michael Lando451a3402017-02-19 10:28:42 +0200107 <dependency>
108 <groupId>org.apache.lucene</groupId>
109 <artifactId>lucene-regex</artifactId>
110 <version>${regex.version}</version>
111 </dependency>
112
113 <dependency>
114 <groupId>org.mockito</groupId>
Tal Gitelman51d50f02017-12-10 18:55:03 +0200115 <artifactId>mockito-core</artifactId>
Michael Landoc34b77c2017-02-28 19:03:11 +0200116 <scope>test</scope>
Michael Lando451a3402017-02-19 10:28:42 +0200117 </dependency>
118
119 <dependency>
120 <groupId>org.yaml</groupId>
121 <artifactId>snakeyaml</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +0300122 <version>${snakeyaml.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200123 <scope>provided</scope>
124 </dependency>
125
126 <dependency>
127 <groupId>com.google.code.gson</groupId>
128 <artifactId>gson</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +0300129 <version>${gson.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200130 <scope>provided</scope>
131 </dependency>
132
133 <dependency>
134 <groupId>org.functionaljava</groupId>
135 <artifactId>functionaljava</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +0300136 <version>${functionaljava.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200137 <scope>provided</scope>
138 </dependency>
139
140 <!-- http client -->
141 <dependency>
142 <groupId>org.apache.httpcomponents</groupId>
143 <artifactId>httpclient</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +0300144 <version>${httpclient.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200145 <scope>provided</scope>
146 </dependency>
147
148 <dependency>
149 <groupId>org.apache.httpcomponents</groupId>
150 <artifactId>httpcore</artifactId>
Michael Landoc34b77c2017-02-28 19:03:11 +0200151 <version>${httpcore.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200152 <scope>provided</scope>
153 </dependency>
154
155 <dependency>
156 <groupId>com.google.guava</groupId>
157 <artifactId>guava</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +0300158 <version>${guava.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200159 <scope>provided</scope>
160 </dependency>
161
162 <!-- TEST -->
Michael Landoed64b5e2017-06-09 03:19:04 +0300163 <dependency>
Michael Landoa5445102018-03-04 14:53:33 +0200164 <groupId>org.assertj</groupId>
165 <artifactId>assertj-core</artifactId>
166 <scope>test</scope>
167 </dependency>
168
169 <dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +0300170 <groupId>org.springframework</groupId>
171 <artifactId>spring-test</artifactId>
172 <version>${spring.version}</version>
173 <scope>test</scope>
174 </dependency>
Michael Lando451a3402017-02-19 10:28:42 +0200175
176 <dependency>
177 <groupId>junit</groupId>
178 <artifactId>junit</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +0300179 <version>${junit.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200180 <scope>test</scope>
181 </dependency>
182
183 <dependency>
184 <groupId>org.apache.commons</groupId>
185 <artifactId>commons-jci-core</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +0300186 <version>${commons-jci-core.version}</version>
187 <scope>test</scope>
188 </dependency>
189
190 <dependency>
191 <groupId>org.springframework</groupId>
192 <artifactId>spring-expression</artifactId>
193 <version>${spring.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200194 <scope>test</scope>
195 </dependency>
196
197 <dependency>
198 <groupId>org.springframework</groupId>
Michael Lando451a3402017-02-19 10:28:42 +0200199 <artifactId>spring-aop</artifactId>
Michael Landoc0ac0152017-02-27 23:48:43 +0200200 <version>${spring.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200201 <scope>test</scope>
202 </dependency>
203
204 <!-- TITAN -->
205 <dependency>
206 <groupId>com.thinkaurelius.titan</groupId>
207 <artifactId>titan-core</artifactId>
208 <version>${titan.version}</version>
209 <scope>provided</scope>
210 <exclusions>
211 <exclusion>
212 <groupId>org.json</groupId>
213 <artifactId>json</artifactId>
214 </exclusion>
215 <exclusion>
216 <artifactId>slf4j-log4j12</artifactId>
217 <groupId>org.slf4j</groupId>
218 </exclusion>
219 </exclusions>
220 </dependency>
221
222 <dependency>
Idan Amit39987c82017-09-13 13:51:41 +0300223 <groupId>org.openecomp.sdc.sdc-titan-cassandra</groupId>
224 <artifactId>sdc-titan-cassandra</artifactId>
Michael Lando451a3402017-02-19 10:28:42 +0200225 <version>${titan.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200226 <scope>provided</scope>
227 <exclusions>
228 <exclusion>
229 <groupId>org.slf4j</groupId>
230 <artifactId>slf4j-log4j12</artifactId>
231 </exclusion>
232 </exclusions>
233 </dependency>
234
235 <dependency>
236 <groupId>org.apache.commons</groupId>
237 <artifactId>commons-lang3</artifactId>
Michael Landoc34b77c2017-02-28 19:03:11 +0200238 <version>${lang3.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200239 <scope>provided</scope>
240 </dependency>
Michael Lando451a3402017-02-19 10:28:42 +0200241 <!-- TITAN END -->
242
243 <!-- CASSANDRA -->
244 <dependency>
245 <groupId>com.datastax.cassandra</groupId>
246 <artifactId>cassandra-driver-core</artifactId>
247 <version>${cassandra.driver.version}</version>
248 <scope>provided</scope>
249 </dependency>
250 <dependency>
251 <groupId>com.datastax.cassandra</groupId>
252 <artifactId>cassandra-driver-mapping</artifactId>
253 <version>${cassandra.driver.version}</version>
254 <scope>provided</scope>
255 </dependency>
256 <!-- CASSANDRA END -->
Michael Landoa5445102018-03-04 14:53:33 +0200257 </dependencies>
Michael Lando451a3402017-02-19 10:28:42 +0200258
Michael Lando451a3402017-02-19 10:28:42 +0200259 <build>
260
261 <pluginManagement>
262 <plugins>
263 <!--This plugin's configuration is used to store Eclipse m2e settings
264 only. It has no influence on the Maven build itself. -->
265 <plugin>
266 <groupId>org.eclipse.m2e</groupId>
267 <artifactId>lifecycle-mapping</artifactId>
268 <version>1.0.0</version>
269 <configuration>
270 <lifecycleMappingMetadata>
271 <pluginExecutions>
272 <pluginExecution>
273 <pluginExecutionFilter>
274 <groupId>fr.fastconnect</groupId>
275 <artifactId>plantuml-maven-plugin</artifactId>
276 <versionRange>[1.0.0,)</versionRange>
277 <goals>
278 <goal>plant</goal>
279 </goals>
280 </pluginExecutionFilter>
281 <action>
282 <ignore />
283 </action>
284 </pluginExecution>
285 </pluginExecutions>
286 </lifecycleMappingMetadata>
287 </configuration>
288 </plugin>
289 <plugin>
290 <groupId>org.apache.maven.plugins</groupId>
291 <artifactId>maven-deploy-plugin</artifactId>
292 <version>2.7</version>
293 <configuration>
294 <skip>true</skip>
295 </configuration>
296 </plugin>
297 </plugins>
298 </pluginManagement>
299 </build>
Michael Lando451a3402017-02-19 10:28:42 +0200300</project>