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