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