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