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