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