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