blob: ad6d2bd200a160c151d9a5f6e036c9cabbb28410 [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 Lando451a3402017-02-19 10:28:42 +020014 <dependencies>
Michael Landoed64b5e2017-06-09 03:19:04 +030015
16 <!-- Common of SDC -->
Michael Landoc34b77c2017-02-28 19:03:11 +020017 <dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +030018 <groupId>org.openecomp.sdc</groupId>
19 <artifactId>common-app-api</artifactId>
20 <version>${project.version}</version>
21 <scope>provided</scope>
Michael Landoc34b77c2017-02-28 19:03:11 +020022 </dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +030023
Michael Landoc0ac0152017-02-27 23:48:43 +020024 <dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +030025 <groupId>org.openecomp.sdc.be</groupId>
26 <artifactId>common-be</artifactId>
27 <version>${project.version}</version>
Michael Lando2e0ef972017-02-28 01:44:21 +020028 <scope>provided</scope>
29 </dependency>
30
31 <dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +030032 <groupId>ch.qos.logback</groupId>
33 <artifactId>logback-classic</artifactId>
34 <version>${logback.version}</version>
Michael Landoc0ac0152017-02-27 23:48:43 +020035 <scope>provided</scope>
36 </dependency>
37
38 <dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +030039 <groupId>ch.qos.logback</groupId>
40 <artifactId>logback-core</artifactId>
41 <version>${logback.version}</version>
Michael Landoc0ac0152017-02-27 23:48:43 +020042 <scope>provided</scope>
43 </dependency>
44
45 <dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +030046 <groupId>org.elasticsearch</groupId>
47 <artifactId>elasticsearch</artifactId>
48 <version>${elastic-search.version}</version>
49 <scope>provided</scope>
50 </dependency>
51
52 <dependency>
53 <groupId>org.elasticsearch.plugin</groupId>
54 <artifactId>shield</artifactId>
55 <version>${elastic-search.version}</version>
56 <scope>provided</scope>
57 </dependency>
58
59 <!-- SPRING -->
60 <dependency>
Michael Landoc0ac0152017-02-27 23:48:43 +020061 <groupId>org.springframework</groupId>
62 <artifactId>spring-context</artifactId>
63 <version>${spring.version}</version>
64 <scope>provided</scope>
65 </dependency>
66
67 <dependency>
68 <groupId>org.springframework</groupId>
69 <artifactId>spring-context-support</artifactId>
70 <version>${spring.version}</version>
71 <scope>provided</scope>
72 </dependency>
73
74 <dependency>
75 <groupId>org.springframework</groupId>
Michael Landoed64b5e2017-06-09 03:19:04 +030076 <artifactId>spring-beans</artifactId>
Michael Landoc0ac0152017-02-27 23:48:43 +020077 <version>${spring.version}</version>
78 <scope>provided</scope>
79 </dependency>
80
81 <dependency>
Michael Lando451a3402017-02-19 10:28:42 +020082 <groupId>org.aspectj</groupId>
83 <artifactId>aspectjrt</artifactId>
84 <version>${aspectj.version}</version>
85 </dependency>
86
87 <dependency>
88 <groupId>org.aspectj</groupId>
89 <artifactId>aspectjweaver</artifactId>
90 <version>${aspectj.version}</version>
91 </dependency>
92
93 <dependency>
94 <groupId>com.fasterxml.jackson.core</groupId>
95 <artifactId>jackson-databind</artifactId>
Michael Landoc34b77c2017-02-28 19:03:11 +020096 <version>${jackson.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +020097 <scope>provided</scope>
98 </dependency>
99
100 <dependency>
101 <groupId>org.slf4j</groupId>
102 <artifactId>slf4j-api</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +0300103 <version>${slf4j-api.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200104 <scope>provided</scope>
105 </dependency>
106 <dependency>
107 <groupId>com.googlecode.json-simple</groupId>
108 <artifactId>json-simple</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +0300109 <version>${json-simple.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200110 <scope>provided</scope>
Michael Lando451a3402017-02-19 10:28:42 +0200111 </dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +0300112
Michael Lando451a3402017-02-19 10:28:42 +0200113 <dependency>
114 <groupId>org.apache.lucene</groupId>
115 <artifactId>lucene-regex</artifactId>
116 <version>${regex.version}</version>
117 </dependency>
118
119 <dependency>
120 <groupId>org.mockito</groupId>
121 <artifactId>mockito-all</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +0300122 <version>${mockito.version}</version>
Michael Landoc34b77c2017-02-28 19:03:11 +0200123 <scope>test</scope>
Michael Lando451a3402017-02-19 10:28:42 +0200124 </dependency>
125
126 <dependency>
127 <groupId>org.yaml</groupId>
128 <artifactId>snakeyaml</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +0300129 <version>${snakeyaml.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200130 <scope>provided</scope>
131 </dependency>
132
133 <dependency>
134 <groupId>com.google.code.gson</groupId>
135 <artifactId>gson</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +0300136 <version>${gson.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200137 <scope>provided</scope>
138 </dependency>
139
140 <dependency>
141 <groupId>org.functionaljava</groupId>
142 <artifactId>functionaljava</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +0300143 <version>${functionaljava.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200144 <scope>provided</scope>
145 </dependency>
146
147 <!-- http client -->
148 <dependency>
149 <groupId>org.apache.httpcomponents</groupId>
150 <artifactId>httpclient</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +0300151 <version>${httpclient.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200152 <scope>provided</scope>
153 </dependency>
154
155 <dependency>
156 <groupId>org.apache.httpcomponents</groupId>
157 <artifactId>httpcore</artifactId>
Michael Landoc34b77c2017-02-28 19:03:11 +0200158 <version>${httpcore.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200159 <scope>provided</scope>
160 </dependency>
161
162 <dependency>
163 <groupId>com.google.guava</groupId>
164 <artifactId>guava</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +0300165 <version>${guava.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200166 <scope>provided</scope>
167 </dependency>
168
169 <!-- TEST -->
Michael Landoed64b5e2017-06-09 03:19:04 +0300170 <dependency>
171 <groupId>org.springframework</groupId>
172 <artifactId>spring-test</artifactId>
173 <version>${spring.version}</version>
174 <scope>test</scope>
175 </dependency>
Michael Lando451a3402017-02-19 10:28:42 +0200176
177 <dependency>
178 <groupId>junit</groupId>
179 <artifactId>junit</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +0300180 <version>${junit.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200181 <scope>test</scope>
182 </dependency>
183
184 <dependency>
185 <groupId>org.apache.commons</groupId>
186 <artifactId>commons-jci-core</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +0300187 <version>${commons-jci-core.version}</version>
188 <scope>test</scope>
189 </dependency>
190
191 <dependency>
192 <groupId>org.springframework</groupId>
193 <artifactId>spring-expression</artifactId>
194 <version>${spring.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200195 <scope>test</scope>
196 </dependency>
197
198 <dependency>
199 <groupId>org.springframework</groupId>
Michael Lando451a3402017-02-19 10:28:42 +0200200 <artifactId>spring-aop</artifactId>
Michael Landoc0ac0152017-02-27 23:48:43 +0200201 <version>${spring.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200202 <scope>test</scope>
203 </dependency>
204
205 <!-- TITAN -->
206 <dependency>
207 <groupId>com.thinkaurelius.titan</groupId>
208 <artifactId>titan-core</artifactId>
209 <version>${titan.version}</version>
210 <scope>provided</scope>
211 <exclusions>
212 <exclusion>
213 <groupId>org.json</groupId>
214 <artifactId>json</artifactId>
215 </exclusion>
216 <exclusion>
217 <artifactId>slf4j-log4j12</artifactId>
218 <groupId>org.slf4j</groupId>
219 </exclusion>
220 </exclusions>
221 </dependency>
222
223 <dependency>
Idan Amit39987c82017-09-13 13:51:41 +0300224 <groupId>org.openecomp.sdc.sdc-titan-cassandra</groupId>
225 <artifactId>sdc-titan-cassandra</artifactId>
Michael Lando451a3402017-02-19 10:28:42 +0200226 <version>${titan.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200227 <scope>provided</scope>
228 <exclusions>
229 <exclusion>
230 <groupId>org.slf4j</groupId>
231 <artifactId>slf4j-log4j12</artifactId>
232 </exclusion>
233 </exclusions>
234 </dependency>
235
236 <dependency>
237 <groupId>org.apache.commons</groupId>
238 <artifactId>commons-lang3</artifactId>
Michael Landoc34b77c2017-02-28 19:03:11 +0200239 <version>${lang3.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200240 <scope>provided</scope>
241 </dependency>
Michael Lando451a3402017-02-19 10:28:42 +0200242 <!-- TITAN END -->
243
244 <!-- CASSANDRA -->
245 <dependency>
246 <groupId>com.datastax.cassandra</groupId>
247 <artifactId>cassandra-driver-core</artifactId>
248 <version>${cassandra.driver.version}</version>
249 <scope>provided</scope>
250 </dependency>
251 <dependency>
252 <groupId>com.datastax.cassandra</groupId>
253 <artifactId>cassandra-driver-mapping</artifactId>
254 <version>${cassandra.driver.version}</version>
255 <scope>provided</scope>
256 </dependency>
257 <!-- CASSANDRA END -->
258
Michael Lando451a3402017-02-19 10:28:42 +0200259 </dependencies>
260
Michael Lando451a3402017-02-19 10:28:42 +0200261 <build>
262
263 <pluginManagement>
264 <plugins>
265 <!--This plugin's configuration is used to store Eclipse m2e settings
266 only. It has no influence on the Maven build itself. -->
267 <plugin>
268 <groupId>org.eclipse.m2e</groupId>
269 <artifactId>lifecycle-mapping</artifactId>
270 <version>1.0.0</version>
271 <configuration>
272 <lifecycleMappingMetadata>
273 <pluginExecutions>
274 <pluginExecution>
275 <pluginExecutionFilter>
276 <groupId>fr.fastconnect</groupId>
277 <artifactId>plantuml-maven-plugin</artifactId>
278 <versionRange>[1.0.0,)</versionRange>
279 <goals>
280 <goal>plant</goal>
281 </goals>
282 </pluginExecutionFilter>
283 <action>
284 <ignore />
285 </action>
286 </pluginExecution>
287 </pluginExecutions>
288 </lifecycleMappingMetadata>
289 </configuration>
290 </plugin>
291 <plugin>
292 <groupId>org.apache.maven.plugins</groupId>
293 <artifactId>maven-deploy-plugin</artifactId>
294 <version>2.7</version>
295 <configuration>
296 <skip>true</skip>
297 </configuration>
298 </plugin>
299 </plugins>
300 </pluginManagement>
301 </build>
Michael Lando451a3402017-02-19 10:28:42 +0200302</project>