blob: 3c970d5fe7642dd8fca7a66beca662c2a4542dac [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 <!-- 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 Landoed64b5e2017-06-09 03:19:04 +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>
33 <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>ch.qos.logback</groupId>
39 <artifactId>logback-core</artifactId>
40 <version>${logback.version}</version>
Michael Landoc0ac0152017-02-27 23:48:43 +020041 <scope>provided</scope>
42 </dependency>
43
44 <dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +030045 <groupId>org.elasticsearch</groupId>
46 <artifactId>elasticsearch</artifactId>
47 <version>${elastic-search.version}</version>
48 <scope>provided</scope>
49 </dependency>
50
51 <dependency>
52 <groupId>org.elasticsearch.plugin</groupId>
53 <artifactId>shield</artifactId>
54 <version>${elastic-search.version}</version>
55 <scope>provided</scope>
56 </dependency>
57
58 <!-- SPRING -->
59 <dependency>
Michael Landoc0ac0152017-02-27 23:48:43 +020060 <groupId>org.springframework</groupId>
61 <artifactId>spring-context</artifactId>
62 <version>${spring.version}</version>
63 <scope>provided</scope>
64 </dependency>
65
66 <dependency>
67 <groupId>org.springframework</groupId>
68 <artifactId>spring-context-support</artifactId>
69 <version>${spring.version}</version>
70 <scope>provided</scope>
71 </dependency>
72
73 <dependency>
74 <groupId>org.springframework</groupId>
Michael Landoed64b5e2017-06-09 03:19:04 +030075 <artifactId>spring-beans</artifactId>
Michael Landoc0ac0152017-02-27 23:48:43 +020076 <version>${spring.version}</version>
77 <scope>provided</scope>
78 </dependency>
79
80 <dependency>
Michael Lando451a3402017-02-19 10:28:42 +020081 <groupId>org.aspectj</groupId>
82 <artifactId>aspectjrt</artifactId>
83 <version>${aspectj.version}</version>
84 </dependency>
85
86 <dependency>
87 <groupId>org.aspectj</groupId>
88 <artifactId>aspectjweaver</artifactId>
89 <version>${aspectj.version}</version>
90 </dependency>
91
92 <dependency>
93 <groupId>com.fasterxml.jackson.core</groupId>
94 <artifactId>jackson-databind</artifactId>
Michael Landoc34b77c2017-02-28 19:03:11 +020095 <version>${jackson.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +020096 <scope>provided</scope>
97 </dependency>
98
99 <dependency>
100 <groupId>org.slf4j</groupId>
101 <artifactId>slf4j-api</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +0300102 <version>${slf4j-api.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200103 <scope>provided</scope>
104 </dependency>
105 <dependency>
106 <groupId>com.googlecode.json-simple</groupId>
107 <artifactId>json-simple</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +0300108 <version>${json-simple.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200109 <scope>provided</scope>
Michael Lando451a3402017-02-19 10:28:42 +0200110 </dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +0300111
Michael Lando451a3402017-02-19 10:28:42 +0200112 <dependency>
113 <groupId>org.apache.lucene</groupId>
114 <artifactId>lucene-regex</artifactId>
115 <version>${regex.version}</version>
116 </dependency>
117
118 <dependency>
119 <groupId>org.mockito</groupId>
Tal Gitelman51d50f02017-12-10 18:55:03 +0200120 <artifactId>mockito-core</artifactId>
Michael Landoc34b77c2017-02-28 19:03:11 +0200121 <scope>test</scope>
Michael Lando451a3402017-02-19 10:28:42 +0200122 </dependency>
123
124 <dependency>
125 <groupId>org.yaml</groupId>
126 <artifactId>snakeyaml</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +0300127 <version>${snakeyaml.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200128 <scope>provided</scope>
129 </dependency>
130
131 <dependency>
132 <groupId>com.google.code.gson</groupId>
133 <artifactId>gson</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +0300134 <version>${gson.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200135 <scope>provided</scope>
136 </dependency>
137
138 <dependency>
139 <groupId>org.functionaljava</groupId>
140 <artifactId>functionaljava</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +0300141 <version>${functionaljava.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200142 <scope>provided</scope>
143 </dependency>
144
145 <!-- http client -->
146 <dependency>
147 <groupId>org.apache.httpcomponents</groupId>
148 <artifactId>httpclient</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +0300149 <version>${httpclient.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200150 <scope>provided</scope>
151 </dependency>
152
153 <dependency>
154 <groupId>org.apache.httpcomponents</groupId>
155 <artifactId>httpcore</artifactId>
Michael Landoc34b77c2017-02-28 19:03:11 +0200156 <version>${httpcore.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200157 <scope>provided</scope>
158 </dependency>
159
160 <dependency>
161 <groupId>com.google.guava</groupId>
162 <artifactId>guava</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +0300163 <version>${guava.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200164 <scope>provided</scope>
165 </dependency>
166
167 <!-- TEST -->
Michael Landoed64b5e2017-06-09 03:19:04 +0300168 <dependency>
169 <groupId>org.springframework</groupId>
170 <artifactId>spring-test</artifactId>
171 <version>${spring.version}</version>
172 <scope>test</scope>
173 </dependency>
Michael Lando451a3402017-02-19 10:28:42 +0200174
175 <dependency>
176 <groupId>junit</groupId>
177 <artifactId>junit</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +0300178 <version>${junit.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200179 <scope>test</scope>
180 </dependency>
181
182 <dependency>
183 <groupId>org.apache.commons</groupId>
184 <artifactId>commons-jci-core</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +0300185 <version>${commons-jci-core.version}</version>
186 <scope>test</scope>
187 </dependency>
188
189 <dependency>
190 <groupId>org.springframework</groupId>
191 <artifactId>spring-expression</artifactId>
192 <version>${spring.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200193 <scope>test</scope>
194 </dependency>
195
196 <dependency>
197 <groupId>org.springframework</groupId>
Michael Lando451a3402017-02-19 10:28:42 +0200198 <artifactId>spring-aop</artifactId>
Michael Landoc0ac0152017-02-27 23:48:43 +0200199 <version>${spring.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200200 <scope>test</scope>
201 </dependency>
202
203 <!-- TITAN -->
204 <dependency>
205 <groupId>com.thinkaurelius.titan</groupId>
206 <artifactId>titan-core</artifactId>
207 <version>${titan.version}</version>
208 <scope>provided</scope>
209 <exclusions>
210 <exclusion>
211 <groupId>org.json</groupId>
212 <artifactId>json</artifactId>
213 </exclusion>
214 <exclusion>
215 <artifactId>slf4j-log4j12</artifactId>
216 <groupId>org.slf4j</groupId>
217 </exclusion>
218 </exclusions>
219 </dependency>
220
221 <dependency>
Idan Amit39987c82017-09-13 13:51:41 +0300222 <groupId>org.openecomp.sdc.sdc-titan-cassandra</groupId>
223 <artifactId>sdc-titan-cassandra</artifactId>
Michael Lando451a3402017-02-19 10:28:42 +0200224 <version>${titan.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200225 <scope>provided</scope>
226 <exclusions>
227 <exclusion>
228 <groupId>org.slf4j</groupId>
229 <artifactId>slf4j-log4j12</artifactId>
230 </exclusion>
231 </exclusions>
232 </dependency>
233
234 <dependency>
235 <groupId>org.apache.commons</groupId>
236 <artifactId>commons-lang3</artifactId>
Michael Landoc34b77c2017-02-28 19:03:11 +0200237 <version>${lang3.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200238 <scope>provided</scope>
239 </dependency>
Michael Lando451a3402017-02-19 10:28:42 +0200240 <!-- TITAN END -->
241
242 <!-- CASSANDRA -->
243 <dependency>
244 <groupId>com.datastax.cassandra</groupId>
245 <artifactId>cassandra-driver-core</artifactId>
246 <version>${cassandra.driver.version}</version>
247 <scope>provided</scope>
248 </dependency>
249 <dependency>
250 <groupId>com.datastax.cassandra</groupId>
251 <artifactId>cassandra-driver-mapping</artifactId>
252 <version>${cassandra.driver.version}</version>
253 <scope>provided</scope>
254 </dependency>
255 <!-- CASSANDRA END -->
256
Michael Lando451a3402017-02-19 10:28:42 +0200257 </dependencies>
258
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>