diff options
author | Chandan Ghosh <cghosh12@in.ibm.com> | 2019-04-09 15:18:05 +0530 |
---|---|---|
committer | Timoney, Dan (dt5972) <dtimoney@att.com> | 2019-04-09 12:43:18 -0400 |
commit | 5d55c4181f7037f158b3aa0e25e915b953e7b3c0 (patch) | |
tree | 87a47f39b643e0c981c21918418e424505bdacc5 /cds-ui/server/pom.xml | |
parent | 4fade7ac50901b20d209975c8476b47301f2e840 (diff) |
Added required docker file to deploy as container
Added required docker file to deploy as container
Issue-ID: CCSDK-1209
Change-Id: Ib455cfee95f58ca759eefa6d06469d164930e3a3
Signed-off-by: Chandan Ghosh <cghosh12@in.ibm.com>
Diffstat (limited to 'cds-ui/server/pom.xml')
-rw-r--r-- | cds-ui/server/pom.xml | 69 |
1 files changed, 69 insertions, 0 deletions
diff --git a/cds-ui/server/pom.xml b/cds-ui/server/pom.xml index 59b14b890..1c05d5521 100644 --- a/cds-ui/server/pom.xml +++ b/cds-ui/server/pom.xml @@ -39,6 +39,8 @@ limitations under the License. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <npm.executable>npm</npm.executable> <onap.nexus.url>https://nexus.onap.org</onap.nexus.url> + <image.name>onap/ccsdk-cds-ui-server</image.name> + <docker.push.phase>deploy</docker.push.phase> </properties> <build> @@ -91,6 +93,73 @@ limitations under the License. </executions> </plugin> + <plugin> + <groupId>org.codehaus.groovy.maven</groupId> + <artifactId>gmaven-plugin</artifactId> + <version>1.0</version> + <executions> + <execution> + <phase>validate</phase> + <goals> + <goal>execute</goal> + </goals> + <configuration> + <source>${basedir}/../../TagVersion.groovy</source> + </configuration> + </execution> + </executions> + </plugin> </plugins> </build> + + <profiles> + <profile> + <id>docker</id> + <build> + <plugins> + <plugin> + <groupId>io.fabric8</groupId> + <artifactId>docker-maven-plugin</artifactId> + <version>0.26.1</version> + <inherited>false</inherited> + <configuration> + <images> + <image> + <name>${image.name}</name> + <build> + <cleanup>try</cleanup> + <dockerFileDir>${basedir}</dockerFileDir> + <tags> + <tag>${project.docker.latestminortag.version}</tag> + <tag>${project.docker.latestfulltag.version}</tag> + <tag>${project.docker.latesttagtimestamp.version}</tag> + </tags> + </build> + </image> + </images> + <verbose>true</verbose> + </configuration> + <executions> + <execution> + <id>generate-images</id> + <phase>package</phase> + <goals> + <goal>build</goal> + </goals> + </execution> + <execution> + <id>push-images</id> + <phase>${docker.push.phase}</phase> + <goals> + <goal>build</goal> + <goal>push</goal> + </goals> + </execution> + </executions> + </plugin> + </plugins> + </build> + </profile> + + </profiles> </project> |