blob: af4f76c4de9b6180262c3406a3607911153762ae [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 Landoce868e62017-12-25 20:07:37 +0200121 <version>${mockito.version}</version>
Michael Landoc34b77c2017-02-28 19:03:11 +0200122 <scope>test</scope>
Michael Lando451a3402017-02-19 10:28:42 +0200123 </dependency>
124
125 <dependency>
126 <groupId>org.yaml</groupId>
127 <artifactId>snakeyaml</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +0300128 <version>${snakeyaml.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200129 <scope>provided</scope>
130 </dependency>
131
132 <dependency>
133 <groupId>com.google.code.gson</groupId>
134 <artifactId>gson</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +0300135 <version>${gson.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200136 <scope>provided</scope>
137 </dependency>
138
139 <dependency>
140 <groupId>org.functionaljava</groupId>
141 <artifactId>functionaljava</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +0300142 <version>${functionaljava.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200143 <scope>provided</scope>
144 </dependency>
145
146 <!-- http client -->
147 <dependency>
148 <groupId>org.apache.httpcomponents</groupId>
149 <artifactId>httpclient</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +0300150 <version>${httpclient.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200151 <scope>provided</scope>
152 </dependency>
153
154 <dependency>
155 <groupId>org.apache.httpcomponents</groupId>
156 <artifactId>httpcore</artifactId>
Michael Landoc34b77c2017-02-28 19:03:11 +0200157 <version>${httpcore.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200158 <scope>provided</scope>
159 </dependency>
160
161 <dependency>
162 <groupId>com.google.guava</groupId>
163 <artifactId>guava</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +0300164 <version>${guava.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200165 <scope>provided</scope>
166 </dependency>
167
168 <!-- TEST -->
Michael Landoed64b5e2017-06-09 03:19:04 +0300169 <dependency>
170 <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 -->
257
Michael Lando451a3402017-02-19 10:28:42 +0200258 </dependencies>
259
Michael Lando451a3402017-02-19 10:28:42 +0200260 <build>
261
262 <pluginManagement>
263 <plugins>
264 <!--This plugin's configuration is used to store Eclipse m2e settings
265 only. It has no influence on the Maven build itself. -->
266 <plugin>
267 <groupId>org.eclipse.m2e</groupId>
268 <artifactId>lifecycle-mapping</artifactId>
269 <version>1.0.0</version>
270 <configuration>
271 <lifecycleMappingMetadata>
272 <pluginExecutions>
273 <pluginExecution>
274 <pluginExecutionFilter>
275 <groupId>fr.fastconnect</groupId>
276 <artifactId>plantuml-maven-plugin</artifactId>
277 <versionRange>[1.0.0,)</versionRange>
278 <goals>
279 <goal>plant</goal>
280 </goals>
281 </pluginExecutionFilter>
282 <action>
283 <ignore />
284 </action>
285 </pluginExecution>
286 </pluginExecutions>
287 </lifecycleMappingMetadata>
288 </configuration>
289 </plugin>
290 <plugin>
291 <groupId>org.apache.maven.plugins</groupId>
292 <artifactId>maven-deploy-plugin</artifactId>
293 <version>2.7</version>
294 <configuration>
295 <skip>true</skip>
296 </configuration>
297 </plugin>
298 </plugins>
299 </pluginManagement>
300 </build>
Michael Lando451a3402017-02-19 10:28:42 +0200301</project>