Add application metrics in the catalog backend
[sdc.git] / catalog-be / pom.xml
1 <project xmlns="http://maven.apache.org/POM/4.0.0"
2     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4     <modelVersion>4.0.0</modelVersion>
5
6     <artifactId>catalog-be</artifactId>
7     <packaging>war</packaging>
8
9     <parent>
10         <groupId>org.openecomp.sdc</groupId>
11         <artifactId>sdc-main</artifactId>
12         <version>1.11.1-SNAPSHOT</version>
13     </parent>
14
15     <properties>
16         <java-hamcrest.version>2.0.0.0</java-hamcrest.version>
17         <swagger.version>${swagger-core-mvn-plugin.version}</swagger.version>
18         <swagger-ui.version>3.25.0</swagger-ui.version>
19         <maven-dependency-plugin.version>3.2.0</maven-dependency-plugin.version>
20         <replacer.plugin.version>1.5.3</replacer.plugin.version>
21         <ui.version>${project.version}</ui.version>
22         <micrometer.version>1.8.4</micrometer.version>
23     </properties>
24
25     <dependencies>
26         <dependency>
27             <groupId>org.openecomp.sdc</groupId>
28             <artifactId>togglz-rest-services</artifactId>
29             <version>${project.version}</version>
30             <exclusions>
31                 <exclusion>
32                     <groupId>com.fasterxml.woodstox</groupId>
33                     <artifactId>woodstox-core</artifactId>
34                 </exclusion>
35             </exclusions>
36         </dependency>
37
38         <!--JSON and YAML Parsing-->
39         <dependency>
40             <groupId>com.fasterxml.jackson.core</groupId>
41             <artifactId>jackson-core</artifactId>
42             <version>${jackson.version}</version>
43         </dependency>
44         <dependency>
45             <groupId>com.fasterxml.jackson.dataformat</groupId>
46             <artifactId>jackson-dataformat-yaml</artifactId>
47             <version>${jackson.version}</version>
48             <exclusions>
49                 <exclusion>
50                     <groupId>com.fasterxml.jackson.core</groupId>
51                     <artifactId>jackson-core</artifactId>
52                 </exclusion>
53             </exclusions>
54         </dependency>
55
56         <dependency>
57             <groupId>com.fasterxml.jackson.core</groupId>
58             <artifactId>jackson-databind</artifactId>
59             <version>${jackson.version}</version>
60             <exclusions>
61                 <exclusion>
62                     <groupId>com.fasterxml.jackson.core</groupId>
63                     <artifactId>jackson-core</artifactId>
64                 </exclusion>
65             </exclusions>
66         </dependency>
67
68         <dependency>
69             <groupId>org.onap.sdc.common</groupId>
70             <artifactId>onap-generic-artifact-browser-service</artifactId>
71             <version>${project.version}</version>
72             <scope>compile</scope>
73         </dependency>
74
75         <!-- Swagger Dependencies Start -->
76         <dependency>
77             <groupId>io.swagger.core.v3</groupId>
78             <artifactId>swagger-jaxrs2</artifactId>
79             <version>${swagger.version}</version>
80             <exclusions>
81                 <exclusion>
82                     <groupId>com.fasterxml.jackson.core</groupId>
83                     <artifactId>jackson-core</artifactId>
84                 </exclusion>
85                 <exclusion>
86                     <groupId>io.github.classgraph</groupId>
87                     <artifactId>classgraph</artifactId>
88                 </exclusion>
89             </exclusions>
90         </dependency>
91         <dependency>
92             <groupId>io.swagger.core.v3</groupId>
93             <artifactId>swagger-annotations</artifactId>
94             <version>${swagger.version}</version>
95         </dependency>
96         <!-- Swagger Dependencies End -->
97
98         <dependency>
99             <groupId>org.hibernate.validator</groupId>
100             <artifactId>hibernate-validator</artifactId>
101             <version>${hibernate.validator.version}</version>
102         </dependency>
103
104         <dependency>
105             <groupId>org.openecomp.sdc</groupId>
106             <artifactId>common-app-api</artifactId>
107             <version>${project.version}</version>
108             <exclusions>
109                 <exclusion>
110                     <groupId>com.fasterxml.jackson.core</groupId>
111                     <artifactId>jackson-core</artifactId>
112                 </exclusion>
113                 <exclusion>
114                     <groupId>org.apache.httpcomponents</groupId>
115                     <artifactId>httpcore</artifactId>
116                 </exclusion>
117             </exclusions>
118         </dependency>
119
120         <dependency>
121             <groupId>javax.ws.rs</groupId>
122             <artifactId>javax.ws.rs-api</artifactId>
123             <version>${ws.rs.version}</version>
124         </dependency>
125
126         <dependency>
127             <groupId>org.openecomp.sdc.be</groupId>
128             <artifactId>common-be</artifactId>
129             <version>${project.version}</version>
130             <scope>compile</scope>
131             <exclusions>
132                 <exclusion>
133                     <groupId>org.springframework</groupId>
134                     <artifactId>spring-core</artifactId>
135                 </exclusion>
136             </exclusions>
137         </dependency>
138         <dependency>
139             <groupId>org.openecomp.sdc.be</groupId>
140             <artifactId>common-be-tests-utils</artifactId>
141             <version>${project.version}</version>
142             <scope>test</scope>
143             <exclusions>
144                 <exclusion>
145                     <groupId>org.springframework</groupId>
146                     <artifactId>spring-core</artifactId>
147                 </exclusion>
148             </exclusions>
149         </dependency>
150         <dependency>
151             <groupId>org.openecomp.sdc.be</groupId>
152             <artifactId>catalog-dao</artifactId>
153             <version>${project.version}</version>
154             <exclusions>
155                 <exclusion>
156                     <groupId>com.fasterxml.jackson.core</groupId>
157                     <artifactId>jackson-core</artifactId>
158                 </exclusion>
159             </exclusions>
160         </dependency>
161
162         <dependency>
163             <groupId>org.openecomp.sdc.be</groupId>
164             <artifactId>catalog-model</artifactId>
165             <version>${project.version}</version>
166             <exclusions>
167                 <exclusion>
168                     <groupId>com.fasterxml.jackson.core</groupId>
169                     <artifactId>jackson-core</artifactId>
170                 </exclusion>
171             </exclusions>
172         </dependency>
173
174       <dependency>
175           <groupId>io.micrometer</groupId>
176           <artifactId>micrometer-registry-prometheus</artifactId>
177           <version>${micrometer.version}</version>
178       </dependency>
179
180         <dependency>
181             <groupId>ch.qos.logback</groupId>
182             <artifactId>logback-classic</artifactId>
183             <version>${logback.version}</version>
184             <scope>compile</scope>
185         </dependency>
186
187         <!-- Snake Yaml -->
188         <dependency>
189             <groupId>org.yaml</groupId>
190             <artifactId>snakeyaml</artifactId>
191             <version>${snakeyaml.version}</version>
192             <scope>compile</scope>
193         </dependency>
194
195         <!-- File changes listener -->
196         <dependency>
197             <groupId>org.apache.commons</groupId>
198             <artifactId>commons-jci-core</artifactId>
199             <version>${commons-jci-core.version}</version>
200             <scope>compile</scope>
201             <exclusions>
202                 <exclusion>
203                     <groupId>commons-io</groupId>
204                     <artifactId>commons-io</artifactId>
205                 </exclusion>
206             </exclusions>
207         </dependency>
208
209         <!-- Gson -->
210         <dependency>
211             <groupId>com.google.code.gson</groupId>
212             <artifactId>gson</artifactId>
213             <version>${gson.version}</version>
214             <scope>compile</scope>
215         </dependency>
216
217         <!-- jersey -->
218         <dependency>
219             <groupId>org.glassfish.jersey.media</groupId>
220             <artifactId>jersey-media-json-jackson</artifactId>
221             <version>${jersey-bom.version}</version>
222             <exclusions>
223                 <exclusion>
224                     <groupId>com.fasterxml.jackson.core</groupId>
225                     <artifactId>jackson-core</artifactId>
226                 </exclusion>
227             </exclusions>
228         </dependency>
229
230         <dependency>
231             <groupId>org.glassfish.jersey.containers</groupId>
232             <artifactId>jersey-container-servlet-core</artifactId>
233             <version>${jersey-bom.version}</version>
234             <scope>compile</scope>
235         </dependency>
236
237         <dependency>
238             <groupId>org.glassfish.jersey.media</groupId>
239             <artifactId>jersey-media-multipart</artifactId>
240             <version>${jersey-bom.version}</version>
241             <scope>compile</scope>
242         </dependency>
243         <dependency>
244             <groupId>org.glassfish.jersey.ext</groupId>
245             <artifactId>jersey-spring4</artifactId>
246             <version>${jersey-bom.version}</version>
247             <exclusions>
248                 <exclusion>
249                     <groupId>org.springframework</groupId>
250                     <artifactId>spring-web</artifactId>
251                 </exclusion>
252                 <exclusion>
253                     <groupId>org.springframework</groupId>
254                     <artifactId>spring-beans</artifactId>
255                 </exclusion>
256                 <exclusion>
257                     <groupId>org.springframework</groupId>
258                     <artifactId>spring-core</artifactId>
259                 </exclusion>
260                 <exclusion>
261                     <groupId>org.springframework</groupId>
262                     <artifactId>spring-aop</artifactId>
263                 </exclusion>
264                 <!-- Transitive dependency of spring-bridge -->
265                 <exclusion>
266                     <groupId>org.springframework</groupId>
267                     <artifactId>spring-context</artifactId>
268                 </exclusion>
269                 <exclusion>
270                     <groupId>org.hibernate</groupId>
271                     <artifactId>hibernate-validator</artifactId>
272                 </exclusion>
273             </exclusions>
274
275         </dependency>
276
277         <!--asm-all-repackaged is a jersey dependency. in current version jersey depends on a version that was compiled using java 9 compiler
278             currently our jetty (v9.3.6) does not support java 9. as soon as jetty gets upgraded we will remove this dependency-->
279         <dependency>
280             <groupId>org.glassfish.hk2.external</groupId>
281             <artifactId>asm-all-repackaged</artifactId>
282         </dependency>
283
284         <dependency>
285             <groupId>org.glassfish.jersey.ext</groupId>
286             <artifactId>jersey-bean-validation</artifactId>
287             <exclusions>
288                 <exclusion>
289                     <groupId>org.hibernate</groupId>
290                     <artifactId>hibernate-validator</artifactId>
291                 </exclusion>
292             </exclusions>
293         </dependency>
294
295         <!-- http client -->
296         <dependency>
297             <groupId>org.apache.httpcomponents</groupId>
298             <artifactId>httpclient</artifactId>
299             <version>${httpclient.version}</version>
300             <scope>compile</scope>
301             <exclusions>
302                 <exclusion>
303                     <groupId>org.apache.httpcomponents</groupId>
304                     <artifactId>httpcore</artifactId>
305                 </exclusion>
306             </exclusions>
307         </dependency>
308
309         <dependency>
310             <groupId>org.apache.httpcomponents</groupId>
311             <artifactId>httpcore</artifactId>
312             <version>${httpcore.version}</version>
313             <scope>compile</scope>
314         </dependency>
315
316         <dependency>
317             <groupId>commons-logging</groupId>
318             <artifactId>commons-logging</artifactId>
319             <version>${commons-logging}</version>
320             <scope>compile</scope>
321         </dependency>
322
323         <dependency>
324             <groupId>commons-codec</groupId>
325             <artifactId>commons-codec</artifactId>
326             <version>${commons-codec}</version>
327             <scope>compile</scope>
328         </dependency>
329         <!-- http client END -->
330
331         <dependency>
332             <groupId>javax.servlet</groupId>
333             <artifactId>javax.servlet-api</artifactId>
334             <version>${servlet-api.version}</version>
335             <scope>provided</scope>
336         </dependency>
337
338         <dependency>
339             <groupId>org.eclipse.jgit</groupId>
340             <artifactId>org.eclipse.jgit</artifactId>
341             <version>3.4.1.201406201815-r</version>
342         </dependency>
343
344         <!-- spring - used by A4C -->
345         <dependency>
346             <groupId>org.springframework</groupId>
347             <artifactId>spring-core</artifactId>
348             <version>${spring.version}</version>
349             <scope>compile</scope>
350         </dependency>
351
352         <dependency>
353             <groupId>org.springframework</groupId>
354             <artifactId>spring-context</artifactId>
355             <version>${spring.version}</version>
356             <scope>compile</scope>
357             <exclusions>
358                 <exclusion>
359                     <groupId>org.springframework</groupId>
360                     <artifactId>spring-expression</artifactId>
361                 </exclusion>
362                 <exclusion>
363                     <groupId>org.springframework</groupId>
364                     <artifactId>spring-core</artifactId>
365                 </exclusion>
366             </exclusions>
367         </dependency>
368
369         <dependency>
370             <groupId>org.springframework</groupId>
371             <artifactId>spring-web</artifactId>
372             <version>${spring.version}</version>
373             <scope>compile</scope>
374             <exclusions>
375                 <exclusion>
376                     <groupId>org.springframework</groupId>
377                     <artifactId>spring-core</artifactId>
378                 </exclusion>
379             </exclusions>
380         </dependency>
381
382         <dependency>
383             <groupId>org.springframework</groupId>
384             <artifactId>spring-webmvc</artifactId>
385             <version>${spring.version}</version>
386             <scope>compile</scope>
387             <exclusions>
388                 <exclusion>
389                     <groupId>org.springframework</groupId>
390                     <artifactId>spring-expression</artifactId>
391                 </exclusion>
392                 <exclusion>
393                     <groupId>org.springframework</groupId>
394                     <artifactId>spring-core</artifactId>
395                 </exclusion>
396                 <exclusion>
397                     <groupId>org.springframework</groupId>
398                     <artifactId>spring-web</artifactId>
399                 </exclusion>
400             </exclusions>
401         </dependency>
402
403         <dependency>
404             <groupId>org.springframework</groupId>
405             <artifactId>spring-aop</artifactId>
406             <version>${spring.version}</version>
407             <scope>compile</scope>
408             <exclusions>
409                 <exclusion>
410                     <groupId>org.springframework</groupId>
411                     <artifactId>spring-core</artifactId>
412                 </exclusion>
413             </exclusions>
414         </dependency>
415
416         <dependency>
417             <groupId>org.springframework</groupId>
418             <artifactId>spring-beans</artifactId>
419             <version>${spring.version}</version>
420             <scope>compile</scope>
421         </dependency>
422
423         <dependency>
424             <groupId>org.springframework</groupId>
425             <artifactId>spring-expression</artifactId>
426             <version>${spring.version}</version>
427             <scope>compile</scope>
428         </dependency>
429
430         <!-- Spring integration (optional) -->
431         <dependency>
432             <groupId>org.togglz</groupId>
433             <artifactId>togglz-spring-web</artifactId>
434             <version>${togglz.version}</version>
435         </dependency>
436
437         <dependency>
438             <groupId>org.codehaus.janino</groupId>
439             <artifactId>janino</artifactId>
440             <version>${janino.version}</version>
441             <scope>compile</scope>
442         </dependency>
443
444         <dependency>
445             <groupId>org.codehaus.janino</groupId>
446             <artifactId>commons-compiler</artifactId>
447             <version>${janino.version}</version>
448             <scope>compile</scope>
449         </dependency>
450
451         <dependency>
452             <groupId>com.google.guava</groupId>
453             <artifactId>guava</artifactId>
454             <version>${guava.version}</version>
455             <scope>compile</scope>
456         </dependency>
457
458         <dependency>
459             <groupId>org.janusgraph</groupId>
460             <artifactId>janusgraph-core</artifactId>
461             <version>${janusgraph.version}</version>
462             <scope>compile</scope>
463             <exclusions>
464                 <exclusion>
465                     <artifactId>gremlin-groovy</artifactId>
466                     <groupId>org.apache.tinkerpop</groupId>
467                 </exclusion>
468                 <exclusion>
469                     <groupId>org.json</groupId>
470                     <artifactId>json</artifactId>
471                 </exclusion>
472                 <exclusion>
473                     <artifactId>slf4j-log4j12</artifactId>
474                     <groupId>org.slf4j</groupId>
475                 </exclusion>
476                 <exclusion>
477                     <artifactId>commons-collections</artifactId>
478                     <groupId>commons-collections</groupId>
479                 </exclusion>
480                 <exclusion>
481                     <groupId>org.apache.thrift</groupId>
482                     <artifactId>libthrift</artifactId>
483                 </exclusion>
484                 <exclusion>
485                     <groupId>commons-io</groupId>
486                     <artifactId>commons-io</artifactId>
487                 </exclusion>
488                 <exclusion>
489                     <groupId>commons-codec</groupId>
490                     <artifactId>commons-codec</artifactId>
491                 </exclusion>
492                 <exclusion>
493                     <groupId>dom4j</groupId>
494                     <artifactId>dom4j</artifactId>
495                 </exclusion>
496                 <exclusion>
497                     <groupId>org.slf4j</groupId>
498                     <artifactId>jcl-over-slf4j</artifactId>
499                 </exclusion>
500             </exclusions>
501         </dependency>
502
503         <dependency>
504             <groupId>org.janusgraph</groupId>
505             <artifactId>janusgraph-cql</artifactId>
506             <version>${janusgraph.version}</version>
507             <scope>compile</scope>
508             <exclusions>
509                 <exclusion>
510                     <groupId>org.slf4j</groupId>
511                     <artifactId>slf4j-log4j12</artifactId>
512                 </exclusion>
513                 <exclusion>
514                     <groupId>org.json</groupId>
515                     <artifactId>json</artifactId>
516                 </exclusion>
517                 <exclusion>
518                     <artifactId>commons-collections</artifactId>
519                     <groupId>commons-collections</groupId>
520                 </exclusion>
521                 <exclusion>
522                     <artifactId>groovy</artifactId>
523                     <groupId>org.codehaus.groovy</groupId>
524                 </exclusion>
525                 <exclusion>
526                     <groupId>io.netty</groupId>
527                     <artifactId>netty-all</artifactId>
528                 </exclusion>
529             </exclusions>
530         </dependency>
531
532         <dependency>
533             <groupId>org.apache.commons</groupId>
534             <artifactId>commons-lang3</artifactId>
535             <version>${lang3.version}</version>
536             <scope>compile</scope>
537         </dependency>
538
539         <dependency>
540             <groupId>com.googlecode.json-simple</groupId>
541             <artifactId>json-simple</artifactId>
542             <version>${json-simple.version}</version>
543             <scope>compile</scope>
544
545         </dependency>
546
547         <!-- functional java -->
548         <dependency>
549             <groupId>org.functionaljava</groupId>
550             <artifactId>functionaljava</artifactId>
551             <version>${functionaljava.version}</version>
552             <scope>compile</scope>
553         </dependency>
554
555         <!-- Aspects -->
556         <dependency>
557             <groupId>com.jcabi</groupId>
558             <artifactId>jcabi-aspects</artifactId>
559             <version>${jcabi.version}</version>
560             <scope>compile</scope>
561         </dependency>
562
563         <dependency>
564             <groupId>org.aspectj</groupId>
565             <artifactId>aspectjrt</artifactId>
566             <version>${aspectjrt.version}</version>
567             <scope>compile</scope>
568         </dependency>
569
570
571         <!-- CAMBRIA CLIENT for U-EB -->
572         <dependency>
573             <groupId>com.att.nsa</groupId>
574             <artifactId>cambriaClient</artifactId>
575             <version>1.2.1-oss</version>
576             <scope>compile</scope>
577             <exclusions>
578                 <exclusion>
579                     <groupId>com.att.nsa</groupId>
580                     <artifactId>saClientLibrary</artifactId>
581                 </exclusion>
582             </exclusions>
583         </dependency>
584
585         <dependency>
586             <groupId>org.json</groupId>
587             <artifactId>json</artifactId>
588             <version>20131018</version>
589             <scope>compile</scope>
590         </dependency>
591
592         <!-- CASSANDRA -->
593         <dependency>
594             <groupId>com.datastax.cassandra</groupId>
595             <artifactId>cassandra-driver-core</artifactId>
596             <version>${cassandra.driver.version}</version>
597             <scope>compile</scope>
598         </dependency>
599         <dependency>
600             <groupId>com.datastax.cassandra</groupId>
601             <artifactId>cassandra-driver-mapping</artifactId>
602             <version>${cassandra.driver.version}</version>
603             <scope>compile</scope>
604         </dependency>
605         <!-- CASSANDRA END -->
606
607         <!-- Inserted for ECOMP Portal Integration -->
608         <dependency>
609             <groupId>org.owasp.esapi</groupId>
610             <artifactId>esapi</artifactId>
611             <version>${org.owasp.esapi.version}</version>
612             <exclusions>
613                 <exclusion>
614                     <groupId>log4j</groupId>
615                     <artifactId>log4j</artifactId>
616                 </exclusion>
617                 <exclusion>
618                     <groupId>commons-io</groupId>
619                     <artifactId>commons-io</artifactId>
620                 </exclusion>
621                 <exclusion>
622                     <groupId>commons-fileupload</groupId>
623                     <artifactId>commons-fileupload</artifactId>
624                 </exclusion>
625                 <exclusion>
626                     <groupId>org.apache.xmlgraphics</groupId>
627                     <artifactId>xmlgraphics-commons</artifactId>
628                 </exclusion>
629                 <exclusion>
630                     <groupId>xml-apis</groupId>
631                     <artifactId>xml-apis-ext</artifactId>
632                 </exclusion>
633                 <exclusion>
634                     <groupId>xml-apis</groupId>
635                     <artifactId>xml-apis</artifactId>
636                 </exclusion>
637                 <exclusion>
638                     <groupId>xerces</groupId>
639                     <artifactId>xercesImpl</artifactId>
640                 </exclusion>
641             </exclusions>
642         </dependency>
643         <dependency>
644             <groupId>org.onap.portal.sdk</groupId>
645             <artifactId>epsdk-fw</artifactId>
646             <version>${ecomp.version}</version>
647             <scope>compile</scope>
648             <exclusions>
649                 <exclusion>
650                     <groupId>com.att.nsa</groupId>
651                     <artifactId>cambriaClient</artifactId>
652                 </exclusion>
653                 <exclusion>
654                     <artifactId>slf4j-log4j12</artifactId>
655                     <groupId>org.slf4j</groupId>
656                 </exclusion>
657                 <exclusion>
658                     <groupId>org.onap.aaf.authz</groupId>
659                     <artifactId>aaf-cadi-aaf</artifactId>
660                 </exclusion>
661                 <exclusion>
662                     <artifactId>aaf-cadi-core</artifactId>
663                     <groupId>org.onap.aaf.authz</groupId>
664                 </exclusion>
665                 <exclusion>
666                     <artifactId>commons-codec</artifactId>
667                     <groupId>commons-codec</groupId>
668                 </exclusion>
669                 <exclusion>
670                     <artifactId>log4j</artifactId>
671                     <groupId>log4j</groupId>
672                 </exclusion>
673             </exclusions>
674         </dependency>
675
676         <!--Jetty Proxy-->
677         <dependency>
678             <groupId>org.eclipse.jetty</groupId>
679             <artifactId>jetty-http</artifactId>
680             <version>${jetty.version}</version>
681             <scope>compile</scope>
682         </dependency>
683
684         <dependency>
685             <groupId>org.eclipse.jetty</groupId>
686             <artifactId>jetty-proxy</artifactId>
687             <version>${jetty.version}</version>
688             <scope>compile</scope>
689             <exclusions>
690                 <exclusion>
691                     <groupId>org.eclipse.jetty</groupId>
692                     <artifactId>jetty-http</artifactId>
693                 </exclusion>
694             </exclusions>
695         </dependency>
696
697         <dependency>
698             <groupId>org.eclipse.jetty</groupId>
699             <artifactId>jetty-servlets</artifactId>
700             <version>${jetty.version}</version>
701             <scope>compile</scope>
702             <exclusions>
703                 <exclusion>
704                     <groupId>org.eclipse.jetty</groupId>
705                     <artifactId>jetty-http</artifactId>
706                 </exclusion>
707                 <exclusion>
708                     <groupId>org.eclipse.jetty</groupId>
709                     <artifactId>jetty-continuation</artifactId>
710                 </exclusion>
711             </exclusions>
712         </dependency>
713         <!-- System metrics -->
714         <dependency>
715             <groupId>org.fusesource</groupId>
716             <artifactId>sigar</artifactId>
717             <version>${sigar.version}</version>
718             <scope>compile</scope>
719             <exclusions>
720                 <exclusion>
721                     <groupId>log4j</groupId>
722                     <artifactId>log4j</artifactId>
723                 </exclusion>
724             </exclusions>
725         </dependency>
726         <dependency>
727             <groupId>org.onap.dmaap.messagerouter.dmaapclient</groupId>
728             <artifactId>dmaapClient</artifactId>
729             <version>1.1.3</version>
730             <scope>compile</scope>
731             <exclusions>
732                 <exclusion>
733                     <groupId>com.att.aft</groupId>
734                     <artifactId>dme2</artifactId>
735                 </exclusion>
736                 <exclusion>
737                     <groupId>com.fasterxml.jackson.core</groupId>
738                     <artifactId>jackson-core</artifactId>
739                 </exclusion>
740                 <exclusion>
741                     <artifactId>log4j</artifactId>
742                     <groupId>log4j</groupId>
743                 </exclusion>
744                 <exclusion>
745                     <artifactId>apache-log4j-extras</artifactId>
746                     <groupId>log4j</groupId>
747                 </exclusion>
748                 <exclusion>
749                     <groupId>org.apache.httpcomponents</groupId>
750                     <artifactId>httpclient-cache</artifactId>
751                 </exclusion>
752             </exclusions>
753         </dependency>
754         <dependency>
755             <groupId>com.att.aft</groupId>
756             <artifactId>dme2</artifactId>
757             <version>3.1.200-oss</version>
758             <exclusions>
759                 <exclusion>
760                     <groupId>javax.jms</groupId>
761                     <artifactId>jms</artifactId>
762                 </exclusion>
763             </exclusions>
764         </dependency>
765
766         <!-- CADI -->
767         <dependency>
768             <groupId>org.onap.aaf.authz</groupId>
769             <artifactId>aaf-cadi-aaf</artifactId>
770             <version>${cadi.version}</version>
771             <exclusions>
772                 <exclusion>
773                     <groupId>com.datastax.cassandra</groupId>
774                     <artifactId>cassandra-driver-core</artifactId>
775                 </exclusion>
776                 <exclusion>
777                     <groupId>org.slf4j</groupId>
778                     <artifactId>slf4j-log4j12</artifactId>
779                 </exclusion>
780                 <exclusion>
781                     <artifactId>log4j</artifactId>
782                     <groupId>log4j</groupId>
783                 </exclusion>
784             </exclusions>
785         </dependency>
786
787         <!-- TEST -->
788         <dependency>
789             <groupId>org.assertj</groupId>
790             <artifactId>assertj-core</artifactId>
791             <scope>test</scope>
792         </dependency>
793
794         <dependency>
795             <groupId>org.glassfish.jersey.test-framework.providers</groupId>
796             <artifactId>jersey-test-framework-provider-bundle</artifactId>
797             <version>${jersey-bom.version}</version>
798             <type>pom</type>
799             <scope>test</scope>
800             <exclusions>
801                 <exclusion>
802                     <groupId>org.eclipse.jetty</groupId>
803                     <artifactId>jetty-server</artifactId>
804                 </exclusion>
805                 <exclusion>
806                     <groupId>org.eclipse.jetty</groupId>
807                     <artifactId>jetty-continuation</artifactId>
808                 </exclusion>
809             </exclusions>
810         </dependency>
811
812         <dependency>
813             <groupId>org.glassfish.jersey.core</groupId>
814             <artifactId>jersey-client</artifactId>
815             <version>${jersey-bom.version}</version>
816         </dependency>
817
818         <dependency>
819             <groupId>org.eclipse.jetty</groupId>
820             <artifactId>jetty-webapp</artifactId>
821             <version>${jetty.version}</version>
822             <scope>test</scope>
823             <exclusions>
824                 <exclusion>
825                     <groupId>org.eclipse.jetty</groupId>
826                     <artifactId>jetty-servlet</artifactId>
827                 </exclusion>
828             </exclusions>
829         </dependency>
830
831         <dependency>
832             <groupId>org.hamcrest</groupId>
833             <artifactId>hamcrest</artifactId>
834             <version>${hamcrest.version}</version>
835             <scope>test</scope>
836         </dependency>
837
838         <dependency>
839             <groupId>org.hamcrest</groupId>
840             <artifactId>hamcrest-library</artifactId>
841             <version>${hamcrest.version}</version>
842             <scope>test</scope>
843         </dependency>
844
845         <dependency>
846             <groupId>org.junit.jupiter</groupId>
847             <artifactId>junit-jupiter-api</artifactId>
848             <version>${junitJupiter.version}</version>
849             <scope>test</scope>
850         </dependency>
851
852         <dependency>
853             <groupId>org.junit.jupiter</groupId>
854             <artifactId>junit-jupiter</artifactId>
855             <version>${junitJupiter.version}</version>
856             <scope>test</scope>
857         </dependency>
858
859         <dependency>
860             <groupId>org.junit.platform</groupId>
861             <artifactId>junit-platform-commons</artifactId>
862             <version>${junit.platform.version}</version>
863             <scope>test</scope>
864         </dependency>
865         <dependency>
866             <groupId>org.junit.platform</groupId>
867             <artifactId>junit-platform-engine</artifactId>
868             <version>${junit.platform.version}</version>
869             <scope>test</scope>
870         </dependency>
871         <dependency>
872             <groupId>org.mockito</groupId>
873             <artifactId>mockito-junit-jupiter</artifactId>
874             <version>${mockitoJupiter.version}</version>
875             <scope>test</scope>
876         </dependency>
877
878         <dependency>
879             <groupId>org.springframework</groupId>
880             <artifactId>spring-test</artifactId>
881             <version>${spring.version}</version>
882             <scope>test</scope>
883         </dependency>
884
885         <dependency>
886             <groupId>org.springframework</groupId>
887             <artifactId>spring-tx</artifactId>
888             <version>${spring.version}</version>
889             <exclusions>
890                 <exclusion>
891                     <groupId>org.springframework</groupId>
892                     <artifactId>spring-core</artifactId>
893                 </exclusion>
894             </exclusions>
895         </dependency>
896
897         <dependency>
898             <groupId>io.cucumber</groupId>
899             <artifactId>cucumber-java</artifactId>
900             <version>${cucumber.version}</version>
901             <scope>test</scope>
902         </dependency>
903
904         <dependency>
905             <groupId>io.cucumber</groupId>
906             <artifactId>cucumber-junit</artifactId>
907             <version>${cucumber.version}</version>
908             <scope>test</scope>
909         </dependency>
910
911         <dependency>
912             <groupId>org.jmockit</groupId>
913             <artifactId>jmockit</artifactId>
914             <version>${jmockit.version}</version>
915             <scope>test</scope>
916         </dependency>
917
918         <dependency>
919             <groupId>com.google.code.bean-matchers</groupId>
920             <artifactId>bean-matchers</artifactId>
921             <version>0.11</version>
922             <scope>test</scope>
923         </dependency>
924
925         <dependency>
926             <groupId>org.codehaus.groovy</groupId>
927             <artifactId>groovy</artifactId>
928             <version>${groovy.version}</version>
929         </dependency>
930
931         <dependency>
932             <groupId>io.netty</groupId>
933             <artifactId>netty-handler</artifactId>
934         </dependency>
935         <dependency>
936             <groupId>org.onap.sdc.common</groupId>
937             <artifactId>onap-tosca-datatype</artifactId>
938             <version>${project.version}</version>
939             <exclusions>
940                 <exclusion>
941                     <groupId>com.fasterxml.jackson.core</groupId>
942                     <artifactId>jackson-core</artifactId>
943                 </exclusion>
944             </exclusions>
945         </dependency>
946         <dependency>
947             <groupId>org.apache.commons</groupId>
948             <artifactId>commons-collections4</artifactId>
949             <version>${commons.collections.version}</version>
950         </dependency>
951         <dependency>
952             <groupId>org.onap.sdc.sdc-be-common</groupId>
953             <artifactId>security-util-lib</artifactId>
954             <version>${security.util.lib.version}</version>
955             <exclusions>
956                 <exclusion>
957                     <groupId>org.springframework.boot</groupId>
958                     <artifactId>spring-boot-starter-logging</artifactId>
959                 </exclusion>
960             </exclusions>
961         </dependency>
962         <dependency>
963             <groupId>org.openecomp.sdc.core</groupId>
964             <artifactId>openecomp-tosca-lib</artifactId>
965             <version>${project.version}</version>
966             <exclusions>
967                 <exclusion>
968                     <groupId>com.fasterxml.jackson.core</groupId>
969                     <artifactId>jackson-core</artifactId>
970                 </exclusion>
971                 <exclusion>
972                     <groupId>org.springframework</groupId>
973                     <artifactId>spring-core</artifactId>
974                 </exclusion>
975             </exclusions>
976         </dependency>
977         <dependency>
978             <groupId>org.onap.vnfsdk.validation</groupId>
979             <artifactId>validation-pmdictionary</artifactId>
980             <version>${onap.vnfsdk.validation.pmdictionary.version}</version>
981             <exclusions>
982                 <exclusion>
983                     <groupId>org.apache.logging.log4j</groupId>
984                     <artifactId>log4j-slf4j-impl</artifactId>
985                 </exclusion>
986             </exclusions>
987         </dependency>
988
989         <dependency>
990             <groupId>com.googlecode.jmapper-framework</groupId>
991             <artifactId>jmapper-core</artifactId>
992             <version>${jMapper.version}</version>
993             <exclusions>
994                 <exclusion>
995                     <groupId>com.thoughtworks.xstream</groupId>
996                     <artifactId>xstream</artifactId>
997                 </exclusion>
998             </exclusions>
999         </dependency>
1000
1001     </dependencies>
1002
1003     <build>
1004         <finalName>catalog-be</finalName>
1005         <plugins>
1006             <plugin>
1007                 <groupId>org.apache.maven.plugins</groupId>
1008                 <artifactId>maven-surefire-plugin</artifactId>
1009                 <configuration>
1010                     <forkCount>1C</forkCount>
1011                     <reuseForks>false</reuseForks>
1012                 </configuration>
1013             </plugin>
1014             <plugin>
1015                 <!-- Download Swagger UI webjar. -->
1016                 <artifactId>maven-dependency-plugin</artifactId>
1017                 <version>${maven-dependency-plugin.version}</version>
1018                 <executions>
1019                     <execution>
1020                         <phase>prepare-package</phase>
1021                         <goals>
1022                             <goal>unpack</goal>
1023                         </goals>
1024                         <configuration>
1025                             <artifactItems>
1026                                 <artifactItem>
1027                                     <groupId>org.webjars</groupId>
1028                                     <artifactId>swagger-ui</artifactId>
1029                                     <version>${swagger-ui.version}</version>
1030                                 </artifactItem>
1031                             </artifactItems>
1032                             <outputDirectory>${project.build.directory}/swagger-ui</outputDirectory>
1033                         </configuration>
1034                     </execution>
1035                 </executions>
1036             </plugin>
1037             <plugin>
1038                 <!-- Replace the OpenAPI specification example URL with the local one. -->
1039                 <groupId>com.google.code.maven-replacer-plugin</groupId>
1040                 <artifactId>replacer</artifactId>
1041                 <version>${replacer.plugin.version}</version>
1042                 <executions>
1043                     <execution>
1044                         <phase>prepare-package</phase>
1045                         <goals>
1046                             <goal>replace</goal>
1047                         </goals>
1048                     </execution>
1049                 </executions>
1050                 <configuration>
1051                     <file>
1052                         ${project.build.directory}/swagger-ui/META-INF/resources/webjars/swagger-ui/${swagger-ui.version}/index.html
1053                     </file>
1054                     <replacements>
1055                         <replacement>
1056                             <token>https://petstore.swagger.io/v2/swagger.json</token>
1057                             <value>/sdc/openapi.json</value>
1058                         </replacement>
1059                     </replacements>
1060                 </configuration>
1061             </plugin>
1062             <plugin>
1063                 <groupId>org.apache.maven.plugins</groupId>
1064                 <artifactId>maven-war-plugin</artifactId>
1065                 <configuration>
1066                     <packagingExcludes>WEB-INF\lib\slf4j-log4j*.jar,
1067                         WEB-INF/classes/elasticsearch.yml,
1068                         WEB-INF/classes/portal.properties
1069                     </packagingExcludes>
1070                     <archive>
1071                         <manifestEntries>
1072                             <SDC-Version>${ui.version}</SDC-Version>
1073                         </manifestEntries>
1074                         <manifest>
1075                             <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
1076                             <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
1077                         </manifest>
1078                     </archive>
1079                     <attachClasses>true</attachClasses>
1080                     <webResources combine.children="append">
1081                         <resource>
1082                             <directory>
1083                                 ${project.build.directory}/swagger-ui/META-INF/resources/webjars/swagger-ui/${swagger-ui.version}
1084                             </directory>
1085                             <includes>
1086                                 <include>**/*.*</include>
1087                             </includes>
1088                             <targetPath>swagger-ui</targetPath>
1089                         </resource>
1090                     </webResources>
1091                 </configuration>
1092             </plugin>
1093             <plugin>
1094                 <groupId>com.github.sylvainlaurent.maven</groupId>
1095                 <artifactId>yaml-json-validator-maven-plugin</artifactId>
1096                 <executions>
1097                     <execution>
1098                         <id>validate</id>
1099                         <phase>validate</phase>
1100                         <goals>
1101                             <goal>validate</goal>
1102                         </goals>
1103                         <configuration>
1104                             <validationSets>
1105                                 <validationSet>
1106                                     <includes>
1107                                         <include>src/main/resources/**/*.y*ml</include>
1108                                         <include>src/test/resources/**/*.y*ml</include>
1109                                     </includes>
1110                                     <excludes>
1111                                         <exclude>
1112                                             src/test/resources/artifacts/pnfSoftwareInformation/**
1113                                         </exclude>
1114                                     </excludes>
1115                                 </validationSet>
1116                                 <validationSet>
1117                                     <includes>
1118                                         <include>src/main/resources/**/*.json</include>
1119                                         <include>src/test/resources/**/*.json</include>
1120                                     </includes>
1121                                 </validationSet>
1122                             </validationSets>
1123                             <skip>${skipYamlJsonValidator}</skip>
1124                         </configuration>
1125                     </execution>
1126                 </executions>
1127             </plugin>
1128             <plugin>
1129                 <groupId>com.jcabi</groupId>
1130                 <artifactId>jcabi-maven-plugin</artifactId>
1131                 <version>${jcabi.maven.plugin.version}</version>
1132                 <dependencies>
1133                     <dependency>
1134                         <groupId>org.aspectj</groupId>
1135                         <artifactId>aspectjtools</artifactId>
1136                         <version>${aspectj.version}</version>
1137                     </dependency>
1138                     <dependency>
1139                         <groupId>org.aspectj</groupId>
1140                         <artifactId>aspectjweaver</artifactId>
1141                         <version>${aspectj.version}</version>
1142                     </dependency>
1143                 </dependencies>
1144                 <executions>
1145                     <execution>
1146                         <goals>
1147                             <goal>ajc</goal>
1148                         </goals>
1149                     </execution>
1150                 </executions>
1151             </plugin>
1152             <plugin>
1153                 <groupId>org.apache.maven.plugins</groupId>
1154                 <artifactId>maven-assembly-plugin</artifactId>
1155                 <executions>
1156                     <execution>
1157                         <id>normatives</id>
1158                         <phase>prepare-package</phase>
1159                         <goals>
1160                             <goal>single</goal>
1161                         </goals>
1162                         <configuration>
1163                             <finalName>normatives</finalName>
1164                             <appendAssemblyId>false</appendAssemblyId>
1165                             <descriptors>
1166                                 <descriptor>src/main/assembly/normatives.xml</descriptor>
1167                             </descriptors>
1168                         </configuration>
1169                     </execution>
1170                 </executions>
1171             </plugin>
1172             <plugin>
1173                 <groupId>org.apache.maven.plugins</groupId>
1174                 <artifactId>maven-clean-plugin</artifactId>
1175                 <executions>
1176                     <execution>
1177                         <id>clean.sdc.backend.folder</id>
1178                         <phase>clean</phase>
1179                         <goals>
1180                             <goal>clean</goal>
1181                         </goals>
1182                         <configuration>
1183                             <filesets>
1184                                 <fileset>
1185                                     <directory>
1186                                         sdc-backend-init/chef-repo/cookbooks/sdc-catalog-be-setup/files/default
1187                                     </directory>
1188                                     <followSymlinks>false</followSymlinks>
1189                                     <includes>
1190                                         <include>normatives.tar.gz</include>
1191                                     </includes>
1192                                 </fileset>
1193                             </filesets>
1194                         </configuration>
1195                     </execution>
1196                 </executions>
1197             </plugin>
1198             <plugin>
1199                 <groupId>io.swagger.core.v3</groupId>
1200                 <artifactId>swagger-maven-plugin</artifactId>
1201                 <version>${swagger-core-mvn-plugin.version}</version>
1202                 <executions>
1203                     <execution>
1204                         <id>sdce-2-sdce-5</id>
1205                         <phase>compile</phase>
1206                         <goals>
1207                             <goal>resolve</goal>
1208                         </goals>
1209                         <configuration>
1210                             <contextId>sdce-2-sdce-5</contextId>
1211                             <outputPath>${project.build.directory}/generated/swagger</outputPath>
1212                             <outputFileName>swagger-sdce-2-sdce-5</outputFileName>
1213                             <outputFormat>JSON</outputFormat>
1214                             <configurationFilePath>
1215                                 ${project.basedir}/src/main/resources/swagger-config/sdce-2-sdce-5.yaml
1216                             </configurationFilePath>
1217                             <skip>${swagger.skip}</skip>
1218                         </configuration>
1219                     </execution>
1220                     <execution>
1221                         <id>sdce-4</id>
1222                         <phase>compile</phase>
1223                         <goals>
1224                             <goal>resolve</goal>
1225                         </goals>
1226                         <configuration>
1227                             <contextId>sdce-4</contextId>
1228                             <outputPath>${project.build.directory}/generated/swagger</outputPath>
1229                             <outputFileName>swagger-sdce-4</outputFileName>
1230                             <outputFormat>JSON</outputFormat>
1231                             <configurationFilePath>
1232                                 ${project.basedir}/src/main/resources/swagger-config/sdce-4.yaml
1233                             </configurationFilePath>
1234                             <skip>${swagger.skip}</skip>
1235                         </configuration>
1236                     </execution>
1237                     <execution>
1238                         <id>sdce-6</id>
1239                         <phase>compile</phase>
1240                         <goals>
1241                             <goal>resolve</goal>
1242                         </goals>
1243                         <configuration>
1244                             <contextId>sdce-6</contextId>
1245                             <outputPath>${project.build.directory}/generated/swagger</outputPath>
1246                             <outputFileName>swagger-sdce-6</outputFileName>
1247                             <outputFormat>JSON</outputFormat>
1248                             <configurationFilePath>
1249                                 ${project.basedir}/src/main/resources/swagger-config/sdce-6.yaml
1250                             </configurationFilePath>
1251                             <skip>${swagger.skip}</skip>
1252                         </configuration>
1253                     </execution>
1254                     <execution>
1255                         <id>sdce-7</id>
1256                         <phase>compile</phase>
1257                         <goals>
1258                             <goal>resolve</goal>
1259                         </goals>
1260                         <configuration>
1261                             <contextId>sdce-7</contextId>
1262                             <outputPath>${project.build.directory}/generated/swagger</outputPath>
1263                             <outputFileName>swagger-sdce-7</outputFileName>
1264                             <outputFormat>JSON</outputFormat>
1265                             <configurationFilePath>
1266                                 ${project.basedir}/src/main/resources/swagger-config/sdce-7.yaml
1267                             </configurationFilePath>
1268                             <skip>${swagger.skip}</skip>
1269                         </configuration>
1270                     </execution>
1271                 </executions>
1272             </plugin>
1273         </plugins>
1274
1275         <pluginManagement>
1276             <plugins>
1277                 <!--This plugin's configuration is used to store Eclipse m2e settings
1278                     only. It has no influence on the Maven build itself. -->
1279                 <plugin>
1280                     <groupId>org.eclipse.m2e</groupId>
1281                     <artifactId>lifecycle-mapping</artifactId>
1282                     <version>1.0.0</version>
1283                     <configuration>
1284                         <lifecycleMappingMetadata>
1285                             <pluginExecutions>
1286                                 <pluginExecution>
1287                                     <pluginExecutionFilter>
1288                                         <groupId>com.googlecode.maven-download-plugin</groupId>
1289                                         <artifactId>download-maven-plugin</artifactId>
1290                                         <versionRange>[1.2.1,)</versionRange>
1291                                         <goals>
1292                                             <goal>wget</goal>
1293                                         </goals>
1294                                     </pluginExecutionFilter>
1295                                 </pluginExecution>
1296
1297                                 <pluginExecution>
1298                                     <pluginExecutionFilter>
1299                                         <groupId>com.jcabi</groupId>
1300                                         <artifactId>jcabi-maven-plugin</artifactId>
1301                                         <versionRange>[0.0,)</versionRange>
1302                                         <goals>
1303                                             <goal>ajc</goal>
1304                                         </goals>
1305                                     </pluginExecutionFilter>
1306                                     <action>
1307                                         <execute/>
1308                                     </action>
1309                                 </pluginExecution>
1310
1311                             </pluginExecutions>
1312                         </lifecycleMappingMetadata>
1313                     </configuration>
1314                 </plugin>
1315             </plugins>
1316         </pluginManagement>
1317         <!-- Swagger Plugins End -->
1318     </build>
1319
1320     <profiles>
1321         <profile>
1322             <id>docker</id>
1323             <activation>
1324                 <activeByDefault>false</activeByDefault>
1325             </activation>
1326             <build>
1327                 <plugins>
1328                     <plugin>
1329                         <groupId>org.apache.maven.plugins</groupId>
1330                         <artifactId>maven-resources-plugin</artifactId>
1331                         <executions>
1332                             <execution>
1333                                 <id>copy-normatives</id>
1334                                 <phase>package</phase>
1335                                 <goals>
1336                                     <goal>copy-resources</goal>
1337                                 </goals>
1338                                 <configuration>
1339                                     <outputDirectory>
1340                                         sdc-backend-init/chef-repo/cookbooks/sdc-catalog-be-setup/files/default
1341                                     </outputDirectory>
1342                                     <resources>
1343                                         <resource>
1344                                             <directory>${project.build.directory}</directory>
1345                                             <includes>
1346                                                 <include>normatives.tar.gz</include>
1347                                             </includes>
1348                                         </resource>
1349                                     </resources>
1350                                 </configuration>
1351                             </execution>
1352                             <execution>
1353                                 <id>copy-sdc-be-py</id>
1354                                 <phase>verify</phase>
1355                                 <goals>
1356                                     <goal>copy-resources</goal>
1357                                 </goals>
1358                                 <configuration>
1359                                     <outputDirectory>
1360                                         sdc-backend-init/
1361                                     </outputDirectory>
1362                                     <resources>
1363                                         <resource>
1364                                             <directory>
1365                                                 ${project.parent.basedir}/catalog-be/src/main/resources/
1366                                             </directory>
1367                                             <includes>
1368                                                 <include>scripts/sdcBePy/**</include>
1369                                                 <inculde>scripts/setup.py</inculde>
1370                                             </includes>
1371                                         </resource>
1372                                     </resources>
1373                                 </configuration>
1374                             </execution>
1375                         </executions>
1376                     </plugin>
1377                     <plugin>
1378                         <groupId>io.fabric8</groupId>
1379                         <artifactId>docker-maven-plugin</artifactId>
1380                         <configuration>
1381                             <verbose>${verbose}</verbose>
1382                             <apiVersion>${docker.api.version}</apiVersion>
1383                             <registry>${docker.registry}</registry>
1384                             <authConfig>
1385                                 <pull>
1386                                     <username>${docker.username}</username>
1387                                     <password>${docker.password}</password>
1388                                 </pull>
1389                             </authConfig>
1390                             <images>
1391
1392                                 <!-- Build backend image -->
1393                                 <image>
1394                                     <name>${docker.namespace}/sdc-backend</name>
1395                                     <alias>sdc-backend</alias>
1396                                     <build>
1397                                         <cleanup>try</cleanup>
1398                                         <dockerFileDir>backend</dockerFileDir>
1399                                         <tags>
1400                                             <tag>latest</tag>
1401                                             <tag>
1402                                                 ${parsedVersion.majorVersion}.${parsedVersion.minorVersion}-STAGING-latest
1403                                             </tag>
1404                                             <tag>
1405                                                 ${parsedVersion.majorVersion}.${parsedVersion.minorVersion}-${maven.build.timestamp}
1406                                             </tag>
1407                                         </tags>
1408                                         <assembly>
1409                                             <descriptor>backend/backend-files.xml</descriptor>
1410                                             <name>onap-sdc-backend</name>
1411                                         </assembly>
1412                                     </build>
1413                                 </image>
1414                                 <!-- Build backend-init image -->
1415                                 <image>
1416                                     <name>${docker.namespace}/sdc-backend-init</name>
1417                                     <alias>sdc-backend-init</alias>
1418                                     <build>
1419                                         <cleanup>try</cleanup>
1420                                         <dockerFileDir>${project.basedir}/sdc-backend-init
1421                                         </dockerFileDir>
1422                                         <tags>
1423                                             <tag>latest</tag>
1424                                             <tag>
1425                                                 ${parsedVersion.majorVersion}.${parsedVersion.minorVersion}-STAGING-latest
1426                                             </tag>
1427                                             <tag>
1428                                                 ${parsedVersion.majorVersion}.${parsedVersion.minorVersion}-${maven.build.timestamp}
1429                                             </tag>
1430                                         </tags>
1431                                     </build>
1432                                 </image>
1433                             </images>
1434                         </configuration>
1435                         <executions>
1436                             <execution>
1437                                 <id>clean-images</id>
1438                                 <phase>pre-clean</phase>
1439                                 <goals>
1440                                     <goal>remove</goal>
1441                                 </goals>
1442                                 <configuration>
1443                                     <removeAll>true</removeAll>
1444                                     <image>${docker.namespace}/sdc-backend,onap/sdc-backend-init</image>
1445                                 </configuration>
1446                             </execution>
1447
1448                             <execution>
1449                                 <id>generate-images</id>
1450                                 <phase>install</phase>
1451                                 <goals>
1452                                     <goal>build</goal>
1453                                 </goals>
1454                             </execution>
1455
1456                             <execution>
1457                                 <id>push-images</id>
1458                                 <phase>deploy</phase>
1459                                 <goals>
1460                                     <goal>push</goal>
1461                                 </goals>
1462                                 <configuration>
1463                                     <image>${docker.namespace}/sdc-backend,onap/sdc-backend-init</image>
1464                                 </configuration>
1465                             </execution>
1466                         </executions>
1467                     </plugin>
1468                 </plugins>
1469             </build>
1470         </profile>
1471     </profiles>
1472 </project>