Setup additional docker tag 45/101145/6
authorVijay Venkatesh Kumar <vv770d@att.com>
Tue, 4 Feb 2020 23:34:57 +0000 (23:34 +0000)
committerVijay Venkatesh Kumar <vv770d@att.com>
Wed, 5 Feb 2020 18:57:45 +0000 (18:57 +0000)
Change-Id: Icdd6627485a88f5821be498a70ac1ea15f23b73c
Signed-off-by: Vijay Venkatesh Kumar <vv770d@att.com>
Issue-ID: DCAEGEN2-2064
Signed-off-by: Vijay Venkatesh Kumar <vv770d@att.com>
dcae-analytics/dcae-analytics-tca-web/pom.xml
eelf-logger/pom.xml

index 5cdfa4a..c9cd80c 100644 (file)
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!--
   ~ ================================================================================
-  ~ Copyright (c) 2018-2019 AT&T Intellectual Property. All rights reserved.
+  ~ Copyright (c) 2018-2020 AT&T Intellectual Property. All rights reserved.
   ~ ================================================================================
   ~ Modifications Copyright (C) 2019 IBM
   ~ ================================================================================
@@ -42,6 +42,7 @@
     <properties>
         <main.basedir>${project.parent.basedir}</main.basedir>
         <docker.image.name>onap/${project.groupId}.${project.artifactId}</docker.image.name>
+       <maven.build.timestamp.format>yyyyMMdd'T'HHmmss</maven.build.timestamp.format>  
     </properties>
 
     <dependencies>
                     <configuration>
                          <contextDirectory>${project.basedir}</contextDirectory>
                          <repository>${docker.repository}/${docker.image.name}</repository>
-                         <imageTags>
-                                <tag>${project.version}</tag>
-                                <tag>latest</tag>
-                                <tag>${project.version}-${maven.build.timestamp}Z</tag>
-                         </imageTags>
                          <useMavenSettingsForAuth>true</useMavenSettingsForAuth>
                       <buildArgs>
                             <PROJECT_BUILD_DIR_NAME>target</PROJECT_BUILD_DIR_NAME>
                       </buildArgs>
                 </configuration>
                 <executions>
-                       <execution>
-                              <id>default</id>
+                       <execution>
+                               <id>build-image</id>
+                               <phase>install</phase>
+                               <goals>
+                                       <goal>build</goal>
+                               </goals>
+                       </execution>
+                       <execution>
+                              <id>tag-version</id>
                               <phase>install</phase>
                               <goals>
-                                     <goal>build</goal>
+                                     <goal>tag</goal>
                                      <goal>push</goal>
                               </goals>
-                      </execution>
+                               <configuration>
+                                       <tag>${project.version}</tag>
+                               </configuration>
+                       </execution>
+                        <execution>
+                               <id>tag-version-ts</id>
+                               <phase>install</phase>
+                               <goals>
+                                      <goal>tag</goal>
+                                      <goal>push</goal>
+                               </goals>
+                                <configuration>
+                                       <tag>${project.version}-${maven.build.timestamp}Z</tag>
+                                </configuration>
+                        </execution>
                </executions>
-
            </plugin>
         </plugins>
     </build>
index 8dac573..d5bed07 100644 (file)
                 <artifactId>maven-deploy-plugin</artifactId>
             </plugin>
 
-
             <plugin>
                 <groupId>org.apache.maven.plugins</groupId>
                 <artifactId>maven-source-plugin</artifactId>