aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLiam Fallon <liam.fallon@est.tech>2021-04-21 08:01:28 +0000
committerGerrit Code Review <gerrit@onap.org>2021-04-21 08:01:28 +0000
commit20a3082d4423a7b432187cd02b172b696e8f5f61 (patch)
tree685a905bcc38555d262c9f062872ba2397bcc2db
parent8ba0ef18395205abd8fe0a1b41a5d9d030e93cc1 (diff)
parent7ddbdd88b04315ff5de5a6151eb29ebdd20e022d (diff)
Merge "Make skipping of deployment configurable"
-rw-r--r--packages/docker/pom.xml3
1 files changed, 2 insertions, 1 deletions
diff --git a/packages/docker/pom.xml b/packages/docker/pom.xml
index 3e882a94..87ef7b6f 100644
--- a/packages/docker/pom.xml
+++ b/packages/docker/pom.xml
@@ -41,6 +41,7 @@
<docker.skip>false</docker.skip>
<docker.skip.build>false</docker.skip.build>
<docker.skip.push>false</docker.skip.push>
+ <docker.skip.deployconfig>true</docker.skip.deployconfig>
<docker.pull.registry>nexus3.onap.org:10001</docker.pull.registry>
<docker.push.registry>nexus3.onap.org:10003</docker.push.registry>
<maven.build.timestamp.format>yyyyMMdd'T'HHmm</maven.build.timestamp.format>
@@ -150,7 +151,7 @@
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<configuration>
- <skip>true</skip>
+ <skip>${docker.skip.deployconfig}</skip>
</configuration>
</plugin>
</plugins>