blob: 718674211a5fcfa2403260fb89f693b19bb22928 [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 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 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>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 Landoa5445102018-03-04 14:53:33 +020086 <groupId>com.fasterxml.jackson.core</groupId>
Michael Lando451a3402017-02-19 10:28:42 +020087 <artifactId>jackson-databind</artifactId>
Michael Landoc34b77c2017-02-28 19:03:11 +020088 <version>${jackson.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +020089 </dependency>
90
91 <dependency>
Michael Landoa5445102018-03-04 14:53:33 +020092 <groupId>com.fasterxml.jackson.core</groupId>
93 <artifactId>jackson-core</artifactId>
94 <version>${jackson.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +020095 </dependency>
Michael Landoa5445102018-03-04 14:53:33 +020096
Michael Lando451a3402017-02-19 10:28:42 +020097 <dependency>
98 <groupId>com.googlecode.json-simple</groupId>
99 <artifactId>json-simple</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +0300100 <version>${json-simple.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200101 <scope>provided</scope>
Michael Lando451a3402017-02-19 10:28:42 +0200102 </dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +0300103
Michael Lando451a3402017-02-19 10:28:42 +0200104 <dependency>
105 <groupId>org.apache.lucene</groupId>
106 <artifactId>lucene-regex</artifactId>
107 <version>${regex.version}</version>
108 </dependency>
109
110 <dependency>
111 <groupId>org.mockito</groupId>
Tal Gitelman51d50f02017-12-10 18:55:03 +0200112 <artifactId>mockito-core</artifactId>
Michael Landoc34b77c2017-02-28 19:03:11 +0200113 <scope>test</scope>
Michael Lando451a3402017-02-19 10:28:42 +0200114 </dependency>
115
116 <dependency>
Tal Gitelman83b2fd72018-05-27 17:49:33 +0300117 <groupId>org.jmockit</groupId>
118 <artifactId>jmockit</artifactId>
Tal Gitelman83b2fd72018-05-27 17:49:33 +0300119 <scope>test</scope>
120 </dependency>
121
122 <dependency>
Michael Lando451a3402017-02-19 10:28:42 +0200123 <groupId>org.yaml</groupId>
124 <artifactId>snakeyaml</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +0300125 <version>${snakeyaml.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200126 <scope>provided</scope>
127 </dependency>
128
129 <dependency>
130 <groupId>com.google.code.gson</groupId>
131 <artifactId>gson</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +0300132 <version>${gson.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200133 <scope>provided</scope>
134 </dependency>
135
136 <dependency>
137 <groupId>org.functionaljava</groupId>
138 <artifactId>functionaljava</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +0300139 <version>${functionaljava.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200140 <scope>provided</scope>
141 </dependency>
142
143 <!-- http client -->
144 <dependency>
145 <groupId>org.apache.httpcomponents</groupId>
146 <artifactId>httpclient</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +0300147 <version>${httpclient.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200148 <scope>provided</scope>
149 </dependency>
150
151 <dependency>
152 <groupId>org.apache.httpcomponents</groupId>
153 <artifactId>httpcore</artifactId>
Michael Landoc34b77c2017-02-28 19:03:11 +0200154 <version>${httpcore.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200155 <scope>provided</scope>
156 </dependency>
157
158 <dependency>
159 <groupId>com.google.guava</groupId>
160 <artifactId>guava</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +0300161 <version>${guava.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200162 <scope>provided</scope>
163 </dependency>
164
165 <!-- TEST -->
Michael Landoed64b5e2017-06-09 03:19:04 +0300166 <dependency>
Michael Landoa5445102018-03-04 14:53:33 +0200167 <groupId>org.assertj</groupId>
168 <artifactId>assertj-core</artifactId>
169 <scope>test</scope>
170 </dependency>
171
172 <dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +0300173 <groupId>org.springframework</groupId>
174 <artifactId>spring-test</artifactId>
175 <version>${spring.version}</version>
176 <scope>test</scope>
177 </dependency>
Michael Lando451a3402017-02-19 10:28:42 +0200178
179 <dependency>
180 <groupId>junit</groupId>
181 <artifactId>junit</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +0300182 <version>${junit.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200183 <scope>test</scope>
184 </dependency>
185
186 <dependency>
187 <groupId>org.apache.commons</groupId>
188 <artifactId>commons-jci-core</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +0300189 <version>${commons-jci-core.version}</version>
190 <scope>test</scope>
191 </dependency>
192
193 <dependency>
194 <groupId>org.springframework</groupId>
195 <artifactId>spring-expression</artifactId>
196 <version>${spring.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200197 <scope>test</scope>
198 </dependency>
199
200 <dependency>
201 <groupId>org.springframework</groupId>
Michael Lando451a3402017-02-19 10:28:42 +0200202 <artifactId>spring-aop</artifactId>
Michael Landoc0ac0152017-02-27 23:48:43 +0200203 <version>${spring.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200204 <scope>test</scope>
205 </dependency>
206
207 <!-- TITAN -->
208 <dependency>
209 <groupId>com.thinkaurelius.titan</groupId>
210 <artifactId>titan-core</artifactId>
211 <version>${titan.version}</version>
212 <scope>provided</scope>
213 <exclusions>
214 <exclusion>
215 <groupId>org.json</groupId>
216 <artifactId>json</artifactId>
217 </exclusion>
218 <exclusion>
219 <artifactId>slf4j-log4j12</artifactId>
220 <groupId>org.slf4j</groupId>
221 </exclusion>
222 </exclusions>
223 </dependency>
224
225 <dependency>
Michael Landode67b612018-03-15 16:53:05 +0200226 <groupId>org.onap.sdc.sdc-titan-cassandra</groupId>
Idan Amit39987c82017-09-13 13:51:41 +0300227 <artifactId>sdc-titan-cassandra</artifactId>
Michael Landode67b612018-03-15 16:53:05 +0200228 <version>${sdc.titan.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200229 <scope>provided</scope>
230 <exclusions>
231 <exclusion>
232 <groupId>org.slf4j</groupId>
233 <artifactId>slf4j-log4j12</artifactId>
234 </exclusion>
235 </exclusions>
236 </dependency>
237
238 <dependency>
239 <groupId>org.apache.commons</groupId>
240 <artifactId>commons-lang3</artifactId>
Michael Landoc34b77c2017-02-28 19:03:11 +0200241 <version>${lang3.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200242 <scope>provided</scope>
243 </dependency>
Michael Lando451a3402017-02-19 10:28:42 +0200244 <!-- TITAN END -->
245
246 <!-- CASSANDRA -->
247 <dependency>
248 <groupId>com.datastax.cassandra</groupId>
249 <artifactId>cassandra-driver-core</artifactId>
250 <version>${cassandra.driver.version}</version>
251 <scope>provided</scope>
252 </dependency>
253 <dependency>
254 <groupId>com.datastax.cassandra</groupId>
255 <artifactId>cassandra-driver-mapping</artifactId>
256 <version>${cassandra.driver.version}</version>
257 <scope>provided</scope>
258 </dependency>
259 <!-- CASSANDRA END -->
Michael Landoa5445102018-03-04 14:53:33 +0200260 </dependencies>
Michael Lando451a3402017-02-19 10:28:42 +0200261
Michael Lando451a3402017-02-19 10:28:42 +0200262 <build>
263
264 <pluginManagement>
265 <plugins>
266 <!--This plugin's configuration is used to store Eclipse m2e settings
267 only. It has no influence on the Maven build itself. -->
268 <plugin>
269 <groupId>org.eclipse.m2e</groupId>
270 <artifactId>lifecycle-mapping</artifactId>
271 <version>1.0.0</version>
272 <configuration>
273 <lifecycleMappingMetadata>
274 <pluginExecutions>
275 <pluginExecution>
276 <pluginExecutionFilter>
277 <groupId>fr.fastconnect</groupId>
278 <artifactId>plantuml-maven-plugin</artifactId>
279 <versionRange>[1.0.0,)</versionRange>
280 <goals>
281 <goal>plant</goal>
282 </goals>
283 </pluginExecutionFilter>
284 <action>
285 <ignore />
286 </action>
287 </pluginExecution>
288 </pluginExecutions>
289 </lifecycleMappingMetadata>
290 </configuration>
291 </plugin>
292 <plugin>
293 <groupId>org.apache.maven.plugins</groupId>
294 <artifactId>maven-deploy-plugin</artifactId>
295 <version>2.7</version>
296 <configuration>
297 <skip>true</skip>
298 </configuration>
299 </plugin>
300 </plugins>
301 </pluginManagement>
302 </build>
Michael Lando451a3402017-02-19 10:28:42 +0200303</project>