maven improvements and clean up
[sdc.git] / asdctool / pom.xml
1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2                  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3         <modelVersion>4.0.0</modelVersion>
4
5         <artifactId>asdctool</artifactId>
6         <packaging>jar</packaging>
7
8         <parent>
9                 <groupId>org.openecomp.sdc</groupId>
10                 <artifactId>sdc-main</artifactId>
11                 <version>1.3.0-SNAPSHOT</version>
12         </parent>
13
14         <dependencies>
15
16                 <dependency>
17                         <groupId>com.google.guava</groupId>
18                         <artifactId>guava</artifactId>
19                         <version>${guava.version}</version>
20                         <scope>compile</scope>
21                 </dependency>
22
23                 <!-- ASDC dependencies -->
24                 <dependency>
25                         <groupId>org.openecomp.sdc.be</groupId>
26                         <artifactId>common-be</artifactId>
27                         <version>${project.version}</version>
28                         <scope>compile</scope>
29                 </dependency>
30                 <dependency>
31                         <groupId>org.openecomp.sdc</groupId>
32                         <artifactId>common-app-api</artifactId>
33                         <version>${project.version}</version>
34                         <scope>compile</scope>
35                 </dependency>
36
37                 <dependency>
38                         <groupId>org.openecomp.sdc.be</groupId>
39                         <artifactId>catalog-dao</artifactId>
40                         <version>${project.version}</version>
41                         <scope>compile</scope>
42                 </dependency>
43
44                 <dependency>
45                         <groupId>org.openecomp.sdc.be</groupId>
46                         <artifactId>catalog-model</artifactId>
47                         <version>${project.version}</version>
48                         <scope>compile</scope>
49                 </dependency>
50
51
52                 <dependency>
53                         <groupId>org.openecomp.sdc</groupId>
54                         <artifactId>catalog-be</artifactId>
55                         <version>${project.version}</version>
56
57                         <!-- Comment Out in order to debug in eclipse -->
58                         <classifier>classes</classifier>
59
60                         <exclusions>
61                                 <exclusion>
62                                         <groupId>org.openecomp.ecompsdkos</groupId>
63                                         <artifactId>epsdk-fw</artifactId>
64                                 </exclusion>
65
66                                 <exclusion>
67                                         <groupId>org.onap.sdc.common</groupId>
68                                         <artifactId>onap-sdc-artifact-generator-api</artifactId>
69                                 </exclusion>
70
71                                 <exclusion>
72                                         <groupId>org.onap.sdc.common</groupId>
73                                         <artifactId>onap-sdc-artifact-generator-core</artifactId>
74                                 </exclusion>
75
76                                 <exclusion>
77                                         <groupId>org.onap.sdc.common</groupId>
78                                         <artifactId>onap-common-lib</artifactId>
79                                 </exclusion>
80
81                                 <exclusion>
82                                         <groupId>com.att.nsa</groupId>
83                                         <artifactId>cambriaClient</artifactId>
84                                 </exclusion>
85                                 <exclusion>
86                                         <groupId>com.att.nsa</groupId>
87                                         <artifactId>dmaapClient</artifactId>
88                                 </exclusion>
89                                 <exclusion>
90                                         <artifactId>slf4j-log4j12</artifactId>
91                                         <groupId>org.slf4j</groupId>
92                                 </exclusion>
93
94                         </exclusions>
95
96                         <scope>compile</scope>
97                 </dependency>
98
99                 <dependency>
100                         <groupId>org.openecomp.ecompsdkos</groupId>
101                         <artifactId>epsdk-fw</artifactId>
102                         <version>${ecomp.version}</version>
103                         <scope>compile</scope>
104                         <exclusions>
105                                 <exclusion>
106                                         <groupId>com.att.nsa</groupId>
107                                         <artifactId>cambriaClient</artifactId>
108                                 </exclusion>
109                                 <exclusion>
110                                         <groupId>com.att.nsa</groupId>
111                                         <artifactId>dmaapClient</artifactId>
112                                 </exclusion>
113                                 <exclusion>
114                                         <artifactId>slf4j-log4j12</artifactId>
115                                         <groupId>org.slf4j</groupId>
116                                 </exclusion>
117                         </exclusions>
118                 </dependency>
119
120
121
122                 <!-- ASDC dependencies end -->
123                 <dependency>
124                         <groupId>org.eclipse.jetty</groupId>
125                         <artifactId>jetty-server</artifactId>
126                         <version>${jetty.version}</version>
127                         <scope>compile</scope>
128                 </dependency>
129
130                 <!-- listen to file changes -->
131                 <dependency>
132                         <groupId>org.apache.commons</groupId>
133                         <artifactId>commons-jci-core</artifactId>
134                         <version>${commons-jci-core.version}</version>
135                         <scope>compile</scope>
136                 </dependency>
137
138                 <dependency>
139                         <groupId>commons-cli</groupId>
140                         <artifactId>commons-cli</artifactId>
141                         <version>1.4</version>
142                 </dependency>
143
144                 <dependency>
145                         <groupId>org.eclipse.jetty</groupId>
146                         <artifactId>jetty-servlet</artifactId>
147                         <version>${jetty.version}</version>
148                         <scope>compile</scope>
149                 </dependency>
150
151                 <dependency>
152                         <groupId>org.glassfish.jersey.core</groupId>
153                         <artifactId>jersey-server</artifactId>
154                         <version>${jersey-bom.version}</version>
155                         <scope>compile</scope>
156                 </dependency>
157
158                 <dependency>
159                         <groupId>org.glassfish.jersey.containers</groupId>
160                         <artifactId>jersey-container-servlet-core</artifactId>
161                         <version>${jersey-bom.version}</version>
162                         <scope>compile</scope>
163                 </dependency>
164
165                 <dependency>
166                         <groupId>org.glassfish.jersey.containers</groupId>
167                         <artifactId>jersey-container-jetty-http</artifactId>
168                         <version>${jersey-bom.version}</version>
169                         <scope>compile</scope>
170                 </dependency>
171
172                 <dependency>
173                         <groupId>org.glassfish.jersey.media</groupId>
174                         <artifactId>jersey-media-moxy</artifactId>
175                         <version>${jersey-bom.version}</version>
176                         <scope>compile</scope>
177                 </dependency>
178
179                 <dependency>
180                         <groupId>org.glassfish.jersey.media</groupId>
181                         <artifactId>jersey-media-multipart</artifactId>
182                         <version>2.14</version>
183                         <scope>compile</scope>
184                 </dependency>
185
186                 <!-- slf4j + logback -->
187                 <dependency>
188                         <groupId>org.slf4j</groupId>
189                         <artifactId>slf4j-api</artifactId>
190                         <version>${slf4j-api.version}</version>
191                         <scope>compile</scope>
192                 </dependency>
193
194                 <dependency>
195                         <groupId>ch.qos.logback</groupId>
196                         <artifactId>logback-classic</artifactId>
197                         <version>${logback.version}</version>
198                         <scope>compile</scope>
199                 </dependency>
200
201                 <dependency>
202                         <groupId>ch.qos.logback</groupId>
203                         <artifactId>logback-core</artifactId>
204                         <version>${logback.version}</version>
205                         <scope>compile</scope>
206                 </dependency>
207
208                 <!-- groovy -->
209                 <dependency>
210                         <groupId>org.codehaus.groovy</groupId>
211                         <artifactId>groovy-all</artifactId>
212                         <version>${groovy.version}</version>
213                         <scope>compile</scope>
214                 </dependency>
215
216                 <dependency>
217                         <groupId>commons-configuration</groupId>
218                         <artifactId>commons-configuration</artifactId>
219                         <version>1.6</version>
220                         <scope>compile</scope>
221                 </dependency>
222
223                 <!-- TITAN -->
224                 <dependency>
225                         <groupId>com.thinkaurelius.titan</groupId>
226                         <artifactId>titan-core</artifactId>
227                         <version>${titan.version}</version>
228                         <scope>compile</scope>
229                         <exclusions>
230                                 <exclusion>
231                                         <groupId>org.json</groupId>
232                                         <artifactId>json</artifactId>
233                                 </exclusion>
234                                 <exclusion>
235                                         <groupId>org.slf4j</groupId>
236                                         <artifactId>slf4j-log4j12</artifactId>
237                                 </exclusion>
238                         </exclusions>
239                 </dependency>
240
241                 <dependency>
242                         <groupId>com.googlecode.json-simple</groupId>
243                         <artifactId>json-simple</artifactId>
244                         <version>${json-simple.version}</version>
245                         <scope>compile</scope>
246                 </dependency>
247
248                 <dependency>
249                         <groupId>org.onap.sdc.sdc-titan-cassandra</groupId>
250                         <artifactId>sdc-titan-cassandra</artifactId>
251                         <version>${sdc.titan.version}</version>
252                         <scope>compile</scope>
253                         <exclusions>
254                                 <exclusion>
255                                         <groupId>org.slf4j</groupId>
256                                         <artifactId>slf4j-log4j12</artifactId>
257                                 </exclusion>
258                         </exclusions>
259                 </dependency>
260
261                 <dependency>
262                         <groupId>org.apache.tinkerpop</groupId>
263                         <artifactId>tinkergraph-gremlin</artifactId>
264                         <version>3.0.1-incubating</version>
265                         <scope>compile</scope>
266                 </dependency>
267
268                 <dependency>
269                         <groupId>org.apache.tinkerpop</groupId>
270                         <artifactId>gremlin-groovy</artifactId>
271                         <version>3.0.1-incubating</version>
272                         <scope>compile</scope>
273                 </dependency>
274
275                 <dependency>
276                         <groupId>com.tinkerpop.blueprints</groupId>
277                         <artifactId>blueprints-sail-graph</artifactId>
278                         <version>2.5.0</version>
279                         <optional>true</optional>
280                         <scope>compile</scope>
281                         <exclusions>
282                                 <exclusion>
283                                         <groupId>org.slf4j</groupId>
284                                         <artifactId>slf4j-log4j12</artifactId>
285                                 </exclusion>
286                         </exclusions>
287                 </dependency>
288
289                 <dependency>
290                         <groupId>com.tinkerpop.blueprints</groupId>
291                         <artifactId>blueprints-graph-sail</artifactId>
292                         <version>2.5.0</version>
293                         <optional>true</optional>
294                         <scope>compile</scope>
295                         <exclusions>
296                                 <exclusion>
297                                         <groupId>org.slf4j</groupId>
298                                         <artifactId>slf4j-log4j12</artifactId>
299                                 </exclusion>
300                         </exclusions>
301                 </dependency>
302
303                 <!-- TITAN end -->
304                 <dependency>
305                         <groupId>commons-logging</groupId>
306                         <artifactId>commons-logging</artifactId>
307                         <version>${commons-logging}</version>
308                         <scope>compile</scope>
309                 </dependency>
310
311                 <dependency>
312                         <groupId>commons-codec</groupId>
313                         <artifactId>commons-codec</artifactId>
314                         <version>${commons-codec}</version>
315                         <scope>compile</scope>
316                 </dependency>
317
318                 <dependency>
319                         <groupId>com.fasterxml.jackson.core</groupId>
320                         <artifactId>jackson-databind</artifactId>
321                         <version>${jackson.version}</version>
322                         <scope>compile</scope>
323                 </dependency>
324
325                 <!-- Explicitly specified in order to override older version included by epsdk-fw -->
326                 <dependency>
327                         <groupId>com.fasterxml.jackson.core</groupId>
328                         <artifactId>jackson-annotations</artifactId>
329                         <version>${jackson-annotations.version}</version>
330                 </dependency>
331
332                 <dependency>
333                         <groupId>com.google.code.gson</groupId>
334                         <artifactId>gson</artifactId>
335                         <version>${gson.version}</version>
336                         <scope>compile</scope>
337                 </dependency>
338
339                 <dependency>
340                         <groupId>org.apache.httpcomponents</groupId>
341                         <artifactId>httpclient</artifactId>
342                         <version>${httpclient.version}</version>
343                         <scope>compile</scope>
344                 </dependency>
345
346                 <dependency>
347                         <groupId>org.apache.httpcomponents</groupId>
348                         <artifactId>httpcore</artifactId>
349                         <version>${httpcore.version}</version>
350                         <scope>compile</scope>
351                 </dependency>
352
353                 <!-- Spring 4 dependencies -->
354                 <dependency>
355                         <groupId>org.springframework</groupId>
356                         <artifactId>spring-core</artifactId>
357                         <version>${spring.version}</version>
358                         <scope>compile</scope>
359                 </dependency>
360
361                 <dependency>
362                         <groupId>org.springframework</groupId>
363                         <artifactId>spring-context</artifactId>
364                         <version>${spring.version}</version>
365                         <scope>compile</scope>
366                 </dependency>
367
368                 <dependency>
369                         <groupId>org.springframework</groupId>
370                         <artifactId>spring-expression</artifactId>
371                         <version>${spring.version}</version>
372                         <scope>compile</scope>
373                 </dependency>
374
375                 <dependency>
376                         <groupId>org.springframework</groupId>
377                         <artifactId>spring-beans</artifactId>
378                         <version>${spring.version}</version>
379                         <!--<version>4.0.7.RELEASE</version>-->
380                         <scope>compile</scope>
381                 </dependency>
382
383                 <dependency>
384                         <groupId>org.springframework</groupId>
385                         <artifactId>spring-aop</artifactId>
386                         <version>${spring.version}</version>
387                         <scope>compile</scope>
388                 </dependency>
389
390                 <!-- Spring 4 dependencies end -->
391                 <!-- JavaConfig need this library -->
392                 <dependency>
393                         <groupId>cglib</groupId>
394                         <artifactId>cglib</artifactId>
395                         <version>3.2.4</version>
396                         <scope>compile</scope>
397                 </dependency>
398
399                 <dependency>
400                         <groupId>org.yaml</groupId>
401                         <artifactId>snakeyaml</artifactId>
402                         <version>${snakeyaml.version}</version>
403                         <scope>compile</scope>
404                 </dependency>
405
406                 <dependency>
407                         <groupId>org.functionaljava</groupId>
408                         <artifactId>functionaljava</artifactId>
409                         <version>${functionaljava.version}</version>
410                         <scope>compile</scope>
411                 </dependency>
412
413                 <dependency>
414                         <groupId>org.elasticsearch</groupId>
415                         <artifactId>elasticsearch</artifactId>
416                         <version>${elastic-search.version}</version>
417                         <scope>compile</scope>
418                 </dependency>
419
420                 <dependency>
421                         <groupId>com.fasterxml.jackson.dataformat</groupId>
422                         <artifactId>jackson-dataformat-yaml</artifactId>
423                         <version>${jackson.version}</version>
424                         <scope>compile</scope>
425                 </dependency>
426
427                 <dependency>
428                         <groupId>org.elasticsearch.plugin</groupId>
429                         <artifactId>shield</artifactId>
430                         <version>${elastic-search.version}</version>
431                         <scope>compile</scope>
432                 </dependency>
433
434                 <!-- CASSANDRA -->
435                 <dependency>
436                         <groupId>com.datastax.cassandra</groupId>
437                         <artifactId>cassandra-driver-core</artifactId>
438                         <version>${cassandra.driver.version}</version>
439                         <scope>compile</scope>
440                 </dependency>
441
442                 <dependency>
443                         <groupId>com.datastax.cassandra</groupId>
444                         <artifactId>cassandra-driver-mapping</artifactId>
445                         <version>${cassandra.driver.version}</version>
446                         <scope>compile</scope>
447                 </dependency>
448
449                 <!-- CASSANDRA END -->
450
451                 <!-- OPEN CSV -->
452                 <dependency>
453                         <groupId>com.opencsv</groupId>
454                         <artifactId>opencsv</artifactId>
455                         <version>4.0</version>
456                         <scope>compile</scope>
457                 </dependency>
458
459                 <dependency>
460                         <groupId>org.apache.poi</groupId>
461                         <artifactId>com.springsource.org.apache.poi</artifactId>
462                         <version>3.9.0.FINAL</version>
463                         <scope>compile</scope>
464                 </dependency>
465
466                 <dependency>
467                         <groupId>org.jdom</groupId>
468                         <artifactId>jdom</artifactId>
469                         <version>2.0.2</version>
470                         <scope>compile</scope>
471                 </dependency>
472
473                 <!-- Temporary, till building the populate task which adding all components
474                         to cache. We will use Serialization Utils. -->
475                 <dependency>
476                         <groupId>de.ruedigermoeller</groupId>
477                         <artifactId>fst</artifactId>
478                         <version>2.47</version>
479                         <scope>compile</scope>
480                 </dependency>
481
482                 <!-- testing -->
483                 <dependency>
484                         <groupId>junit</groupId>
485                         <artifactId>junit</artifactId>
486                         <version>${junit.version}</version>
487                         <scope>test</scope>
488                 </dependency>
489
490                 <dependency>
491                         <groupId>org.testng</groupId>
492                         <artifactId>testng</artifactId>
493                         <version>${testng.version}</version>
494                         <scope>test</scope>
495                 </dependency>
496
497                 <dependency>
498                         <groupId>org.mockito</groupId>
499                         <artifactId>mockito-core</artifactId>
500                         <scope>test</scope>
501                 </dependency>
502         <dependency>
503             <groupId>org.assertj</groupId>
504             <artifactId>assertj-core</artifactId>
505             <scope>test</scope>
506         </dependency>
507         <!-- testing end -->
508
509         </dependencies>
510
511         <build>
512                 <finalName>${project.artifactId}-${project.version}-jar-with-dependencies</finalName>
513                 <plugins>
514                         <plugin>
515                                 <groupId>org.apache.maven.plugins</groupId>
516                                 <artifactId>maven-clean-plugin</artifactId>
517                                 <executions>
518                                         <execution>
519                                                 <id>clean-static-files</id>
520                                                 <phase>clean</phase>
521                                                 <goals>
522                                                         <goal>clean</goal>
523                                                 </goals>
524                                                 <configuration>
525                                                         <filesets>
526                                                                 <!-- tosca files -->
527                                                                 <fileset>
528                                                                         <directory>${project.parent.basedir}/asdctool/tosca</directory>
529                                                                         <followSymlinks>false</followSymlinks>
530                                                                 </fileset>
531                                                                 <fileset>
532                                                                         <directory>${project.basedir}/sdc-cassandra-init/chef-repo/cookbooks/cassandra-actions/attributes/</directory>
533                                                                         <followSymlinks>false</followSymlinks>
534                                                                         <includes>
535                                                                                 <include>**/default.rb</include>
536                                                                         </includes>
537                                                                 </fileset>
538                                                                 <fileset>
539                                                                         <directory>${project.basedir}/sdc-cassandra-init/chef-repo/cookbooks/cassandra-actions/files/default/tools</directory>
540                                                                         <followSymlinks>false</followSymlinks>
541                                                                 </fileset>
542                                                                 <fileset>
543                                                                         <directory>${project.basedir}/sdc-cassandra-init/chef-repo/cookbooks/cassandra-actions/files/default</directory>
544                                                                         <followSymlinks>false</followSymlinks>
545                                                                         <includes>
546                                                                                 <include>**/sdctool.tar</include>
547                                                                         </includes>
548                                                                 </fileset>
549                                                         </filesets>
550                                                 </configuration>
551                                         </execution>
552                                 </executions>
553                         </plugin>
554
555                         <plugin>
556                                 <groupId>org.apache.maven.plugins</groupId>
557                                 <artifactId>maven-deploy-plugin</artifactId>
558                                 <configuration>
559                                         <skip>true</skip>
560                                 </configuration>
561                         </plugin>
562
563                         <plugin>
564                                 <groupId>org.apache.maven.plugins</groupId>
565                                 <artifactId>maven-assembly-plugin</artifactId>
566                                 <executions>
567                                         <execution>
568                                                 <configuration>
569                                                         <finalName>sdctool</finalName>
570                                                         <appendAssemblyId>false</appendAssemblyId>
571                                                         <descriptors>
572                                                                 <descriptor>${project.basedir}/tarball.xml</descriptor>
573                                                         </descriptors>
574                                                 </configuration>
575                                                 <id>assemble-file</id>
576                                                 <phase>verify</phase>
577                                                 <goals>
578                                                         <goal>single</goal>
579                                                 </goals>
580                                         </execution>
581                                 </executions>
582                         </plugin>
583
584                         <plugin>
585                                 <groupId>org.apache.maven.plugins</groupId>
586                                 <artifactId>maven-shade-plugin</artifactId>
587                                 <executions>
588                                         <execution>
589                                                 <phase>package</phase>
590                                                 <goals>
591                                                         <goal>shade</goal>
592                                                 </goals>
593                                                 <configuration>
594                                                         <filters>
595                                                                 <filter>
596                                                                         <artifact>org.openecomp.sdc:*</artifact>
597                                                                         <excludes>
598                                                                                 <exclude>**/elasticsearch.yml</exclude>
599                                                                         </excludes>
600                                                                 </filter>
601                                                                 <filter>
602                                                                         <artifact>*:*</artifact>
603                                                                         <excludes>
604                                                                                 <exclude>META-INF/*.SF</exclude>
605                                                                                 <exclude>META-INF/*.DSA</exclude>
606                                                                                 <exclude>META-INF/*.RSA</exclude>
607                                                                         </excludes>
608                                                                 </filter>
609                                                         </filters>
610                                                         <transformers>
611                                                                 <transformer implementation="org.apache.maven.plugins.shade.resource.ServicesResourceTransformer"/>
612                                                         </transformers>
613                                                 </configuration>
614                                         </execution>
615                                 </executions>
616                         </plugin>
617                         <plugin>
618                                 <groupId>ru.yaal.maven</groupId>
619                                 <artifactId>write-text-files-maven-plugin</artifactId>
620                                 <configuration>
621                                         <charset>UTF-8</charset>
622                                         <files>
623                                                 <file>
624                                                         <path>
625                                                                 ${project.basedir}\sdc-cassandra-init\chef-repo\cookbooks\cassandra-actions\attributes\default.rb
626                                                         </path>
627                                                         <lines>
628                                                                 <line>normal['version'] ="${parsedVersion.majorVersion}.${parsedVersion.minorVersion}.${parsedVersion.incrementalVersion}"</line>
629                                                         </lines>
630                                                 </file>
631                                         </files>
632                                 </configuration>
633                                 <executions>
634                                         <execution>
635                                                 <id>write-text-files</id>
636                                                 <phase>prepare-package</phase>
637                                                 <goals>
638                                                         <goal>write-text-files</goal>
639                                                 </goals>
640                                         </execution>
641                                 </executions>
642                         </plugin>
643                         <plugin>
644                                 <groupId>org.apache.maven.plugins</groupId>
645                                 <artifactId>maven-resources-plugin</artifactId>
646                                 <executions>
647                                         <execution>
648                                                 <id>copy-tosca-folder</id>
649                                                 <!-- here the phase you need -->
650                                                 <phase>compile</phase>
651                                                 <goals>
652                                                         <goal>copy-resources</goal>
653                                                 </goals>
654                                                 <configuration>
655                                                         <outputDirectory>${project.parent.basedir}/asdctool/tosca</outputDirectory>
656                                                         <resources>
657                                                                 <resource>
658                                                                         <directory>${project.parent.basedir}/catalog-be/src/main/resources/import/tosca</directory>
659                                                                         <filtering>true</filtering>
660                                                                 </resource>
661                                                         </resources>
662                                                 </configuration>
663                                         </execution>
664                                 </executions>
665                         </plugin>
666                 </plugins>
667         </build>
668         <profiles>
669                 <profile>
670                         <id>docker</id>
671                         <activation>
672                                 <activeByDefault>false</activeByDefault>
673                         </activation>
674                         <build>
675                                 <plugins>
676                                         <plugin>
677                                                 <groupId>org.apache.maven.plugins</groupId>
678                                                 <artifactId>maven-resources-plugin</artifactId>
679                                                 <executions>
680                                                         <execution>
681                                                                 <id>copy-sdctool</id>
682                                                                 <phase>verify</phase>
683                                                                 <goals>
684                                                                         <goal>copy-resources</goal>
685                                                                 </goals>
686                                                                 <configuration>
687                                                                         <outputDirectory>${basedir}/sdc-cassandra-init/chef-repo/cookbooks/cassandra-actions/files/default</outputDirectory>
688                                                                         <resources>
689                                                                                 <resource>
690                                                                                         <directory>${project.parent.basedir}/asdctool/target</directory>
691                                                                                         <includes>
692                                                                                                 <include>sdctool.tar</include>
693                                                                                         </includes>
694                                                                                 </resource>
695                                                                         </resources>
696                                                                 </configuration>
697                                                         </execution>
698                                                 </executions>
699                                         </plugin>
700                                         <plugin>
701                                                 <groupId>io.fabric8</groupId>
702                                                 <artifactId>docker-maven-plugin</artifactId>
703                                                 <configuration>
704                                                         <apiVersion>1.23</apiVersion>
705                                                         <registry>nexus3.onap.org:10001</registry>
706                                                         <authConfig>
707                                                                 <pull>
708                                                                         <username>docker</username>
709                                                                         <password>docker</password>
710                                                                 </pull>
711                                                         </authConfig>
712                                                         <images>
713                                                                 <!-- Build cassandra-init image -->
714                                                                 <image>
715                                                                         <name>onap/sdc-cassandra-init</name>
716                                                                         <alias>sdc-cassandra-init</alias>
717                                                                         <build>
718                                                                                 <cleanup>try</cleanup>
719                                                                                 <dockerFileDir>${project.basedir}/sdc-cassandra-init</dockerFileDir>
720                                                                                 <tags>
721                                                                                         <tag>${docker.tag}</tag>
722                                                                                         <tag>${parsedVersion.majorVersion}.${parsedVersion.minorVersion}-STAGING-latest</tag>
723                                                                                 </tags>
724                                                                         </build>
725                                                                 </image>
726                                                         </images>
727                                                 </configuration>
728                                                 <executions>
729                                                         <execution>
730                                                                 <id>clean-images</id>
731                                                                 <phase>pre-clean</phase>
732                                                                 <goals>
733                                                                         <goal>remove</goal>
734                                                                 </goals>
735                                                                 <configuration>
736                                                                         <removeAll>true</removeAll>
737                                                                         <image>onap/sdc-cassandra-init</image>
738                                                                 </configuration>
739                                                         </execution>
740
741                                                         <execution>
742                                                                 <id>generate-images</id>
743                                                                 <phase>install</phase>
744                                                                 <goals>
745                                                                         <goal>build</goal>
746                                                                 </goals>
747                                                         </execution>
748
749                                                         <execution>
750                                                                 <id>push-images</id>
751                                                                 <phase>deploy</phase>
752                                                                 <goals>
753                                                                         <goal>push</goal>
754                                                                 </goals>
755                                                                 <configuration>
756                                                                         <image>onap/sdc-cassandra-init</image>
757                                                                 </configuration>
758                                                         </execution>
759                                                 </executions>
760                                         </plugin>
761                                 </plugins>
762                         </build>
763                 </profile>
764         </profiles>
765 </project>