blob: fe0cef782758dd961ad78a581f6df6b6cf9d321f [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">
Michael Lando451a3402017-02-19 10:28:42 +02003 <modelVersion>4.0.0</modelVersion>
4
5 <artifactId>catalog-be</artifactId>
6 <packaging>war</packaging>
7
8 <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 <properties>
15 <swagger-ui-version>2.1.0-M2</swagger-ui-version>
16 </properties>
17
Michael Lando451a3402017-02-19 10:28:42 +020018 <dependencies>
Michael Landoed64b5e2017-06-09 03:19:04 +030019 <!--JSON and YAML Parsing-->
Michael Landoc34b77c2017-02-28 19:03:11 +020020 <dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +030021 <groupId>com.fasterxml.jackson.dataformat</groupId>
22 <artifactId>jackson-dataformat-yaml</artifactId>
Michael Landob3d48982017-06-11 14:22:02 +030023 <version>${jackson.yaml.version}</version>
Michael Landoed64b5e2017-06-09 03:19:04 +030024 <scope>compile</scope>
Michael Landoc34b77c2017-02-28 19:03:11 +020025 </dependency>
26
Michael Landoc0ac0152017-02-27 23:48:43 +020027 <dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +030028 <groupId>com.fasterxml.jackson.core</groupId>
29 <artifactId>jackson-databind</artifactId>
30 <version>${jackson.version}</version>
31 <scope>compile</scope>
Michael Landoc0ac0152017-02-27 23:48:43 +020032 </dependency>
33
34 <dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +030035 <groupId>com.fasterxml.jackson.core</groupId>
36 <artifactId>jackson-core</artifactId>
37 <version>${jackson.version}</version>
38 <scope>compile</scope>
Michael Landoc0ac0152017-02-27 23:48:43 +020039 </dependency>
40
41 <dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +030042 <groupId>com.fasterxml.jackson.core</groupId>
43 <artifactId>jackson-annotations</artifactId>
44 <version>${jackson.annotations.version}</version>
45 <scope>compile</scope>
46 </dependency>
47
48 <dependency>
49 <groupId>org.glassfish.jersey.media</groupId>
50 <artifactId>jersey-media-multipart</artifactId>
51 <version>${jersey-bom.version}</version>
52 <scope>compile</scope>
Michael Landoc0ac0152017-02-27 23:48:43 +020053 </dependency>
54
Michael Lando451a3402017-02-19 10:28:42 +020055 <dependency>
56 <groupId>org.openecomp.sdc</groupId>
57 <artifactId>security-utils</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +030058 <version>${project.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +020059 <scope>compile</scope>
60 </dependency>
61
62 <dependency>
63 <groupId>com.tinkerpop.blueprints</groupId>
64 <artifactId>blueprints-sail-graph</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +030065 <version>2.5.0</version>
Michael Lando451a3402017-02-19 10:28:42 +020066 <optional>true</optional>
67 <exclusions>
68 <exclusion>
69 <groupId>org.slf4j</groupId>
70 <artifactId>slf4j-log4j12</artifactId>
71 </exclusion>
72 </exclusions>
73 </dependency>
74
75 <dependency>
76 <groupId>com.tinkerpop.blueprints</groupId>
77 <artifactId>blueprints-graph-sail</artifactId>
78 <version>2.5.0</version>
79 <optional>true</optional>
80 </dependency>
81
82 <!-- Swagger Dependencies Start -->
83 <dependency>
Tal Gitelmanaa8e3a02017-06-21 14:29:02 +030084 <groupId>io.swagger</groupId>
Michael Lando451a3402017-02-19 10:28:42 +020085 <artifactId>swagger-jersey2-jaxrs</artifactId>
86 <scope>compile</scope>
Tal Gitelmanaa8e3a02017-06-21 14:29:02 +030087 <version>1.5.15</version>
Michael Lando451a3402017-02-19 10:28:42 +020088 </dependency>
Michael Lando451a3402017-02-19 10:28:42 +020089 <!-- Swagger Dependencies End -->
Tal Gitelmaned7e1c32017-06-29 19:30:00 +030090
Michael Lando451a3402017-02-19 10:28:42 +020091 <dependency>
92 <groupId>org.openecomp.sdc</groupId>
93 <artifactId>common-app-api</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +030094 <version>${project.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +020095 <scope>compile</scope>
96 </dependency>
97
98 <dependency>
99 <groupId>org.openecomp.sdc.be</groupId>
100 <artifactId>common-be</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +0300101 <version>${project.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200102 <scope>compile</scope>
103 </dependency>
104 <dependency>
105 <groupId>org.openecomp.sdc.be</groupId>
106 <artifactId>catalog-dao</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +0300107 <version>${project.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200108 <scope>compile</scope>
109 </dependency>
110
111 <dependency>
112 <groupId>org.openecomp.sdc.be</groupId>
113 <artifactId>catalog-model</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +0300114 <version>${project.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200115 <scope>compile</scope>
116 </dependency>
117
118 <!-- slf4j + logback -->
119 <dependency>
120 <groupId>org.slf4j</groupId>
121 <artifactId>slf4j-api</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +0300122 <version>${slf4j-api.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200123 <scope>compile</scope>
124 </dependency>
125
126 <dependency>
127 <groupId>ch.qos.logback</groupId>
128 <artifactId>logback-classic</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +0300129 <version>${logback.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200130 <scope>compile</scope>
131 </dependency>
132
133 <dependency>
134 <groupId>ch.qos.logback</groupId>
135 <artifactId>logback-core</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +0300136 <version>${logback.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200137 <scope>compile</scope>
138 </dependency>
139
140 <!-- Snake Yaml -->
141 <dependency>
142 <groupId>org.yaml</groupId>
143 <artifactId>snakeyaml</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +0300144 <version>${snakeyaml.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200145 <scope>compile</scope>
146 </dependency>
147
148 <!-- File changes listener -->
Michael Lando451a3402017-02-19 10:28:42 +0200149 <dependency>
150 <groupId>org.apache.commons</groupId>
151 <artifactId>commons-jci-core</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +0300152 <version>${commons-jci-core.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200153 <scope>compile</scope>
154 </dependency>
155
156 <!-- Gson -->
Michael Lando451a3402017-02-19 10:28:42 +0200157 <dependency>
158 <groupId>com.google.code.gson</groupId>
159 <artifactId>gson</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +0300160 <version>${gson.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200161 <scope>compile</scope>
162 </dependency>
163
Michael Lando451a3402017-02-19 10:28:42 +0200164 <!-- jersey -->
165 <dependency>
166 <groupId>org.glassfish.jersey.media</groupId>
167 <artifactId>jersey-media-json-jackson</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +0300168 <version>${jersey-bom.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200169 <scope>compile</scope>
170 </dependency>
171
Michael Landoed64b5e2017-06-09 03:19:04 +0300172 <dependency>
173 <groupId>org.glassfish.jersey.containers</groupId>
174 <artifactId>jersey-container-servlet-core</artifactId>
175 <version>${jersey-bom.version}</version>
176 <scope>compile</scope>
177 </dependency>
Michael Lando451a3402017-02-19 10:28:42 +0200178
179 <!-- http client -->
180 <dependency>
181 <groupId>org.apache.httpcomponents</groupId>
182 <artifactId>httpclient</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +0300183 <version>${httpclient.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200184 <scope>compile</scope>
185 </dependency>
186
187 <dependency>
188 <groupId>org.apache.httpcomponents</groupId>
189 <artifactId>httpcore</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +0300190 <version>${httpcore.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200191 <scope>compile</scope>
192 </dependency>
193
194 <dependency>
195 <groupId>commons-logging</groupId>
196 <artifactId>commons-logging</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +0300197 <version>${commons-logging}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200198 <scope>compile</scope>
199 </dependency>
200
201 <dependency>
202 <groupId>commons-codec</groupId>
203 <artifactId>commons-codec</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +0300204 <version>${commons-codec}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200205 <scope>compile</scope>
206 </dependency>
207 <!-- http client END -->
208
209 <dependency>
210 <groupId>javax.servlet</groupId>
211 <artifactId>servlet-api</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +0300212 <version>${servlet-api.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200213 <scope>provided</scope>
214 </dependency>
215
Michael Lando451a3402017-02-19 10:28:42 +0200216 <dependency>
217 <groupId>org.eclipse.jgit</groupId>
218 <artifactId>org.eclipse.jgit</artifactId>
219 <version>3.4.1.201406201815-r</version>
220 </dependency>
221
Michael Lando451a3402017-02-19 10:28:42 +0200222 <!-- spring - used by A4C -->
Michael Lando451a3402017-02-19 10:28:42 +0200223 <dependency>
224 <groupId>org.springframework</groupId>
225 <artifactId>spring-core</artifactId>
Michael Landoc0ac0152017-02-27 23:48:43 +0200226 <version>${spring.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200227 <scope>compile</scope>
228 </dependency>
229
230 <dependency>
231 <groupId>org.springframework</groupId>
232 <artifactId>spring-context</artifactId>
Michael Landoc0ac0152017-02-27 23:48:43 +0200233 <version>${spring.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200234 <scope>compile</scope>
235 </dependency>
236
237 <dependency>
238 <groupId>org.springframework</groupId>
239 <artifactId>spring-web</artifactId>
Michael Landoc0ac0152017-02-27 23:48:43 +0200240 <version>${spring.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200241 <scope>compile</scope>
242 </dependency>
243
244 <dependency>
245 <groupId>org.springframework</groupId>
246 <artifactId>spring-webmvc</artifactId>
Michael Landoc0ac0152017-02-27 23:48:43 +0200247 <version>${spring.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200248 <scope>compile</scope>
249 </dependency>
250
251 <dependency>
252 <groupId>org.springframework</groupId>
253 <artifactId>spring-aop</artifactId>
Michael Landoc0ac0152017-02-27 23:48:43 +0200254 <version>${spring.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200255 <scope>compile</scope>
256 </dependency>
257
258 <dependency>
259 <groupId>org.springframework</groupId>
260 <artifactId>spring-beans</artifactId>
Michael Landoc0ac0152017-02-27 23:48:43 +0200261 <version>${spring.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200262 <scope>compile</scope>
263 </dependency>
264
265 <dependency>
266 <groupId>org.springframework</groupId>
267 <artifactId>spring-expression</artifactId>
Michael Landoc0ac0152017-02-27 23:48:43 +0200268 <version>${spring.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200269 <scope>compile</scope>
270 </dependency>
271
272 <dependency>
273 <groupId>org.codehaus.groovy</groupId>
274 <artifactId>groovy-all</artifactId>
Michael Landoc34b77c2017-02-28 19:03:11 +0200275 <version>${groovy.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200276 <scope>compile</scope>
277 </dependency>
Michael Landoc34b77c2017-02-28 19:03:11 +0200278
Michael Lando451a3402017-02-19 10:28:42 +0200279 <dependency>
280 <groupId>org.codehaus.janino</groupId>
281 <artifactId>janino</artifactId>
Michael Landoc34b77c2017-02-28 19:03:11 +0200282 <version>${janino.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200283 <scope>compile</scope>
284 </dependency>
285
286 <dependency>
287 <groupId>org.codehaus.janino</groupId>
288 <artifactId>commons-compiler</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +0300289 <version>${janino.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200290 <scope>compile</scope>
291 </dependency>
292
Michael Lando451a3402017-02-19 10:28:42 +0200293 <dependency>
294 <groupId>com.google.guava</groupId>
295 <artifactId>guava</artifactId>
Michael Landoc34b77c2017-02-28 19:03:11 +0200296 <version>${guava.version}</version>
297 <scope>compile</scope>
Michael Lando451a3402017-02-19 10:28:42 +0200298 </dependency>
299
300 <!-- TITAN -->
301 <dependency>
302 <groupId>com.thinkaurelius.titan</groupId>
303 <artifactId>titan-core</artifactId>
304 <version>${titan.version}</version>
305 <scope>compile</scope>
306 <exclusions>
307 <exclusion>
308 <groupId>org.json</groupId>
309 <artifactId>json</artifactId>
310 </exclusion>
311 <exclusion>
312 <artifactId>slf4j-log4j12</artifactId>
313 <groupId>org.slf4j</groupId>
314 </exclusion>
315 </exclusions>
316 </dependency>
317
318 <dependency>
Idan Amit39987c82017-09-13 13:51:41 +0300319 <groupId>org.openecomp.sdc.sdc-titan-cassandra</groupId>
320 <artifactId>sdc-titan-cassandra</artifactId>
Michael Lando451a3402017-02-19 10:28:42 +0200321 <version>${titan.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200322 <scope>compile</scope>
323 <exclusions>
324 <exclusion>
325 <groupId>org.slf4j</groupId>
326 <artifactId>slf4j-log4j12</artifactId>
327 </exclusion>
328 <exclusion>
329 <groupId>io.netty</groupId>
330 <artifactId>netty-all</artifactId>
331 </exclusion>
332 </exclusions>
333 </dependency>
334
335 <dependency>
336 <groupId>org.apache.commons</groupId>
337 <artifactId>commons-lang3</artifactId>
Michael Landoc34b77c2017-02-28 19:03:11 +0200338 <version>${lang3.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200339 <scope>compile</scope>
340 </dependency>
341 <!-- TITAN END -->
342
343 <dependency>
344 <groupId>com.googlecode.json-simple</groupId>
345 <artifactId>json-simple</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +0300346 <version>${json-simple.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200347 <scope>compile</scope>
348
349 </dependency>
350
351 <dependency>
352 <groupId>org.elasticsearch</groupId>
353 <artifactId>elasticsearch</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +0300354 <version>${elastic-search.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200355 <scope>compile</scope>
356 </dependency>
357
Michael Lando451a3402017-02-19 10:28:42 +0200358 <dependency>
359 <groupId>org.elasticsearch.plugin</groupId>
360 <artifactId>shield</artifactId>
361 <version>${elastic-search.version}</version>
362 <scope>compile</scope>
363 </dependency>
364 <!-- functional java -->
365 <dependency>
366 <groupId>org.functionaljava</groupId>
367 <artifactId>functionaljava</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +0300368 <version>${functionaljava.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200369 <scope>compile</scope>
370 </dependency>
371
372 <!-- Aspects -->
373 <dependency>
374 <groupId>com.jcabi</groupId>
375 <artifactId>jcabi-aspects</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +0300376 <version>${jcabi.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200377 <scope>compile</scope>
378 </dependency>
379
380 <dependency>
381 <groupId>org.aspectj</groupId>
382 <artifactId>aspectjrt</artifactId>
Michael Landoc34b77c2017-02-28 19:03:11 +0200383 <version>${aspectjrt.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200384 <scope>compile</scope>
385 </dependency>
386
387 <!-- CAMBRIA CLIENT for U-EB -->
388 <dependency>
389 <groupId>com.att.nsa</groupId>
390 <artifactId>cambriaClient</artifactId>
391 <version>0.0.1</version>
392 <scope>compile</scope>
393 </dependency>
394
395 <dependency>
396 <groupId>com.att.nsa</groupId>
397 <artifactId>saClientLibrary</artifactId>
398 <version>0.0.1</version>
399 <scope>compile</scope>
400 <exclusions>
401 <exclusion>
402 <groupId>org.slf4j</groupId>
403 <artifactId>slf4j-log4j12</artifactId>
404 </exclusion>
405 </exclusions>
406 </dependency>
407
408 <dependency>
409 <groupId>org.json</groupId>
410 <artifactId>json</artifactId>
411 <version>20131018</version>
412 <scope>compile</scope>
413 </dependency>
414 <dependency>
415 <groupId>org.apache.tinkerpop</groupId>
416 <artifactId>tinkergraph-gremlin</artifactId>
417 <version>3.0.1-incubating</version>
418 <scope>compile</scope>
419 </dependency>
420
421 <dependency>
422 <groupId>org.apache.tinkerpop</groupId>
423 <artifactId>gremlin-groovy</artifactId>
424 <version>3.0.1-incubating</version>
425 <scope>compile</scope>
426 </dependency>
427
428 <!-- CASSANDRA -->
429 <dependency>
430 <groupId>com.datastax.cassandra</groupId>
431 <artifactId>cassandra-driver-core</artifactId>
432 <version>${cassandra.driver.version}</version>
433 <scope>compile</scope>
434 </dependency>
435 <dependency>
436 <groupId>com.datastax.cassandra</groupId>
437 <artifactId>cassandra-driver-mapping</artifactId>
438 <version>${cassandra.driver.version}</version>
439 <scope>compile</scope>
440 </dependency>
441 <!-- CASSANDRA END -->
442
443 <!-- Inserted for ECOMP Portal Integration -->
444 <dependency>
445 <groupId>org.openecomp.ecompsdkos</groupId>
Michael Landob3d48982017-06-11 14:22:02 +0300446 <artifactId>epsdk-fw</artifactId>
Michael Landoebd7c8f2017-03-15 20:38:00 +0200447 <version>${ecomp.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200448 <scope>compile</scope>
449 <exclusions>
450 <exclusion>
451 <groupId>com.att.nsa</groupId>
452 <artifactId>cambriaClient</artifactId>
453 </exclusion>
454 <exclusion>
455 <artifactId>slf4j-log4j12</artifactId>
456 <groupId>org.slf4j</groupId>
457 </exclusion>
458 </exclusions>
459 </dependency>
460
Michael Landoed64b5e2017-06-09 03:19:04 +0300461 <!--Artifact Generator-->
Michael Lando451a3402017-02-19 10:28:42 +0200462 <dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +0300463 <groupId>org.openecomp.sdc.common</groupId>
Michael Lando451a3402017-02-19 10:28:42 +0200464 <artifactId>openecomp-sdc-artifact-generator-api</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +0300465 <version>${artifact-generator-api.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200466 <scope>compile</scope>
Michael Landoed64b5e2017-06-09 03:19:04 +0300467 <exclusions>
468 <exclusion>
469 <groupId>junit</groupId>
470 <artifactId>junit</artifactId>
471 </exclusion>
472 </exclusions>
Michael Lando451a3402017-02-19 10:28:42 +0200473 </dependency>
474
475 <dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +0300476 <groupId>org.openecomp.sdc.common</groupId>
Michael Lando451a3402017-02-19 10:28:42 +0200477 <artifactId>openecomp-sdc-artifact-generator-core</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +0300478 <version>${artifact-generator-core.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200479 <scope>compile</scope>
Michael Landoed64b5e2017-06-09 03:19:04 +0300480 <exclusions>
481 <exclusion>
482 <groupId>junit</groupId>
483 <artifactId>junit</artifactId>
484 </exclusion>
485 </exclusions>
Michael Lando451a3402017-02-19 10:28:42 +0200486 </dependency>
487
488 <dependency>
Tal Gitelmanffdda7d2017-07-02 15:33:25 +0300489 <groupId>org.openecomp.sdc.common</groupId>
Michael Lando451a3402017-02-19 10:28:42 +0200490 <artifactId>openecomp-common-lib</artifactId>
491 <version>${dox-common-lib.version}</version>
492 <type>pom</type>
Michael Landoed64b5e2017-06-09 03:19:04 +0300493 <exclusions>
494 <exclusion>
495 <groupId>junit</groupId>
496 <artifactId>junit</artifactId>
497 </exclusion>
498 </exclusions>
Michael Lando451a3402017-02-19 10:28:42 +0200499 </dependency>
500
Michael Landoed64b5e2017-06-09 03:19:04 +0300501 <!--Jetty Proxy-->
Michael Lando451a3402017-02-19 10:28:42 +0200502 <dependency>
503 <groupId>org.eclipse.jetty</groupId>
504 <artifactId>jetty-proxy</artifactId>
505 <version>${jetty.version}</version>
506 <scope>compile</scope>
507 </dependency>
508
Michael Lando451a3402017-02-19 10:28:42 +0200509 <dependency>
510 <groupId>org.eclipse.jetty</groupId>
511 <artifactId>jetty-servlets</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +0300512 <version>${jetty.version}</version>
513 <scope>compile</scope>
514 </dependency>
515 <!-- System metrics -->
516 <dependency>
517 <groupId>org.fusesource</groupId>
518 <artifactId>sigar</artifactId>
519 <version>${sigar.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200520 <scope>compile</scope>
521 </dependency>
522
523 <!-- TEST -->
524 <dependency>
525 <groupId>org.glassfish.jersey.test-framework.providers</groupId>
526 <artifactId>jersey-test-framework-provider-bundle</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +0300527 <version>${jersey-bom.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200528 <type>pom</type>
529 <scope>test</scope>
530 </dependency>
531
532 <dependency>
533 <groupId>org.eclipse.jetty</groupId>
534 <artifactId>jetty-servlet</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +0300535 <version>${jetty.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200536 <scope>test</scope>
537 </dependency>
538
539 <dependency>
540 <groupId>org.eclipse.jetty</groupId>
541 <artifactId>jetty-webapp</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +0300542 <version>${jetty.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200543 <scope>test</scope>
544 </dependency>
545
546 <dependency>
547 <groupId>junit</groupId>
548 <artifactId>junit</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +0300549 <version>${junit.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200550 <scope>test</scope>
551 </dependency>
552
553 <dependency>
554 <groupId>org.mockito</groupId>
Tal Gitelman51d50f02017-12-10 18:55:03 +0200555 <artifactId>mockito-core</artifactId>
Michael Landoce868e62017-12-25 20:07:37 +0200556 <version>${mockito.version}</version>
Tal Gitelman51d50f02017-12-10 18:55:03 +0200557 <scope>test</scope>
558 </dependency>
559
560 <dependency>
561 <groupId>org.assertj</groupId>
562 <artifactId>assertj-core</artifactId>
Michael Landoce868e62017-12-25 20:07:37 +0200563 <version>${assertj.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200564 <scope>test</scope>
565 </dependency>
566
567 <dependency>
568 <groupId>org.springframework</groupId>
569 <artifactId>spring-test</artifactId>
Michael Landoc0ac0152017-02-27 23:48:43 +0200570 <version>${spring.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200571 <scope>test</scope>
572 </dependency>
573
574 <dependency>
575 <groupId>org.springframework</groupId>
576 <artifactId>spring-tx</artifactId>
577 <version>${spring.version}</version>
578 <scope>test</scope>
579 </dependency>
580 </dependencies>
581
Michael Lando451a3402017-02-19 10:28:42 +0200582 <build>
583
584 <finalName>${project.artifactId}-${project.version}</finalName>
585
Michael Lando451a3402017-02-19 10:28:42 +0200586 <plugins>
Michael Lando451a3402017-02-19 10:28:42 +0200587 <plugin>
588 <groupId>org.apache.maven.plugins</groupId>
589 <artifactId>maven-war-plugin</artifactId>
590 <version>2.6</version>
591 <configuration>
592 <packagingExcludes>WEB-INF\lib\slf4j-log4j*.jar,
593 WEB-INF/classes/elasticsearch.yml,
594 WEB-INF/classes/portal.properties</packagingExcludes>
Michael Landoed64b5e2017-06-09 03:19:04 +0300595 <archive>
596 <manifestEntries>
Michael Landob7bc7da2017-06-09 12:20:38 +0300597 <SDC-Version>${project.version}</SDC-Version>
Michael Landoed64b5e2017-06-09 03:19:04 +0300598 </manifestEntries>
599 <manifest>
600 <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
601 <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
602 </manifest>
603 </archive>
Michael Lando451a3402017-02-19 10:28:42 +0200604
Michael Landoed64b5e2017-06-09 03:19:04 +0300605 <webResources>
606 <resource>
607 <directory>src/main/resources</directory>
608 <directory>src/main/resources/swagger</directory>
609 </resource>
610 </webResources>
611 <attachClasses>true</attachClasses>
612 </configuration>
613 </plugin>
614
615 <plugin>
Michael Landoed64b5e2017-06-09 03:19:04 +0300616 <groupId>com.jcabi</groupId>
617 <artifactId>jcabi-maven-plugin</artifactId>
618 <version>${jcabi.plugin.version}</version>
619 <executions>
620 <execution>
621 <goals>
622 <goal>ajc</goal>
623 </goals>
624 </execution>
625 </executions>
626 </plugin>
627
Michael Landoed64b5e2017-06-09 03:19:04 +0300628 <plugin>
Michael Landoed64b5e2017-06-09 03:19:04 +0300629 <groupId>org.apache.maven.plugins</groupId>
630 <artifactId>maven-assembly-plugin</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +0300631 <executions>
632 <execution>
633 <id>normatives</id>
634 <phase>package</phase>
635 <goals>
636 <goal>single</goal>
637 </goals>
638 <configuration>
639 <finalName>normatives</finalName>
640 <appendAssemblyId>false</appendAssemblyId>
641 <descriptor>${project.basedir}/normatives.xml</descriptor>
642 </configuration>
643 </execution>
644 </executions>
645 </plugin>
Michael Lando451a3402017-02-19 10:28:42 +0200646
Michael Landoed64b5e2017-06-09 03:19:04 +0300647 </plugins>
Michael Lando451a3402017-02-19 10:28:42 +0200648
Michael Landoed64b5e2017-06-09 03:19:04 +0300649 <pluginManagement>
650 <plugins>
Michael Lando451a3402017-02-19 10:28:42 +0200651 <!--This plugin's configuration is used to store Eclipse m2e settings
Michael Landoed64b5e2017-06-09 03:19:04 +0300652 only. It has no influence on the Maven build itself. -->
Michael Lando451a3402017-02-19 10:28:42 +0200653 <plugin>
654 <groupId>org.eclipse.m2e</groupId>
655 <artifactId>lifecycle-mapping</artifactId>
656 <version>1.0.0</version>
657 <configuration>
658 <lifecycleMappingMetadata>
659 <pluginExecutions>
660 <pluginExecution>
661 <pluginExecutionFilter>
662 <groupId>com.googlecode.maven-download-plugin</groupId>
663 <artifactId>download-maven-plugin</artifactId>
664 <versionRange>[1.2.1,)</versionRange>
665 <goals>
666 <goal>wget</goal>
667 </goals>
668 </pluginExecutionFilter>
669 <action>
670 <ignore></ignore>
671 </action>
672 </pluginExecution>
673
674 <pluginExecution>
675 <pluginExecutionFilter>
676 <groupId>com.jcabi</groupId>
677 <artifactId>jcabi-maven-plugin</artifactId>
678 <versionRange>[0.0,)</versionRange>
679 <goals>
680 <goal>ajc</goal>
681 </goals>
682 </pluginExecutionFilter>
683 <action>
684 <execute />
685 </action>
686 </pluginExecution>
687
688 </pluginExecutions>
689 </lifecycleMappingMetadata>
690 </configuration>
691 </plugin>
692 <plugin>
693 <groupId>org.apache.maven.plugins</groupId>
694 <artifactId>maven-deploy-plugin</artifactId>
695 <version>2.7</version>
Michael Landoed64b5e2017-06-09 03:19:04 +0300696 <configuration>
697 <skip>true</skip>
698 </configuration>
Michael Lando451a3402017-02-19 10:28:42 +0200699 </plugin>
Michael Lando451a3402017-02-19 10:28:42 +0200700 </plugins>
701 </pluginManagement>
702 <!-- Swagger Plugins End -->
703 </build>
704
Michael Landoed64b5e2017-06-09 03:19:04 +0300705 <profiles>
706 <profile>
707 <id>catalog</id>
708 <activation>
709 <activeByDefault>false</activeByDefault>
710 </activation>
Michael Lando451a3402017-02-19 10:28:42 +0200711
Michael Landoed64b5e2017-06-09 03:19:04 +0300712 <build>
Michael Landoc61d2242017-06-20 11:07:13 +0300713 <finalName>${project.artifactId}-${project.version}</finalName>
714 </build>
715 </profile>
Michael Landoed64b5e2017-06-09 03:19:04 +0300716 </profiles>
Michael Lando451a3402017-02-19 10:28:42 +0200717</project>