aboutsummaryrefslogtreecommitdiffstats
path: root/packages/pom.xml
diff options
context:
space:
mode:
authorRashmi Pujar <rashmi.pujar@bell.ca>2019-06-17 10:34:49 -0400
committerRashmi Pujar <rashmi.pujar@bell.ca>2019-06-19 06:22:16 -0400
commit7b945416da394a3ae3e53a1a9ae8d21f6a4e761e (patch)
treea86f73cbc96ff35e6f3863f454be6b464fa59aa7 /packages/pom.xml
parentdc2ca16a6d7d8cc13be5716e058add8190ea4479 (diff)
Use io.fabric8:docker-maven-plugin to build and push docker images
Issue-ID: POLICY-969 Signed-off-by: Rashmi Pujar <rashmi.pujar@bell.ca> Change-Id: Ia3c7c2d6b77d87848c344f212f4a0266db90426e
Diffstat (limited to 'packages/pom.xml')
-rw-r--r--packages/pom.xml23
1 files changed, 18 insertions, 5 deletions
diff --git a/packages/pom.xml b/packages/pom.xml
index 9a5c41a38..2fbf5ad0b 100644
--- a/packages/pom.xml
+++ b/packages/pom.xml
@@ -1,6 +1,7 @@
<!--
============LICENSE_START=======================================================
Copyright (C) 2018 Ericsson. All rights reserved.
+ Modifications Copyright (C) 2019 Bell Canada.
================================================================================
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
@@ -32,11 +33,6 @@
<name>${project.artifactId}</name>
<description>[${project.parent.artifactId}] packaging</description>
- <modules>
- <module>apex-pdp-package-full</module>
- <module>apex-pdp-docker</module>
- </modules>
-
<profiles>
<profile>
<id>apexSite</id>
@@ -52,5 +48,22 @@
</site>
</distributionManagement>
</profile>
+ <profile>
+ <id>default</id>
+ <activation>
+ <activeByDefault>true</activeByDefault>
+ </activation>
+ </profile>
+ <profile>
+ <id>docker</id>
+ <modules>
+ <module>apex-pdp-package-full</module>
+ <module>apex-pdp-docker</module>
+ </modules>
+ <properties>
+ <docker.skip.push>false</docker.skip.push>
+ </properties>
+ </profile>
+
</profiles>
</project>