diff options
author | Seshu Kumar M <seshu.kumar.m@huawei.com> | 2017-10-04 16:59:54 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2017-10-04 16:59:54 +0000 |
commit | bef2ca5d66fbd9296125be38b501314b5c8a2f32 (patch) | |
tree | 74942681873c5577b2486fbc0c6d9b397b741b3f | |
parent | 33ef19f5f07ae792d3294e87732c718af926be81 (diff) | |
parent | 765a20b3d701be6b6ed3dc57ecb2827344c68e50 (diff) |
Merge "Fix Docker push in integration test"
-rw-r--r-- | packages/pom.xml | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/packages/pom.xml b/packages/pom.xml index e632f82d62..40a9b6efb6 100644 --- a/packages/pom.xml +++ b/packages/pom.xml @@ -26,12 +26,17 @@ </modules>
</profile>
+ <!-- Those profile are exclusive, choose docker or with-integration-tests -->
<profile>
<id>docker</id>
<modules>
<module>deliveries</module>
<module>docker</module>
</modules>
+ <properties>
+ <!-- For this profile we probably don't want to skip the docker push (if deploy goal is specified) -->
+ <docker.skip.push>false</docker.skip.push>
+ </properties>
</profile>
<profile>
@@ -41,6 +46,10 @@ <module>docker</module>
<module>arquillian-unit-tests</module>
</modules>
+ <properties>
+ <!-- For this profile we want to skip the docker push (if deploy goal is specified) -->
+ <docker.skip.push>true</docker.skip.push>
+ </properties>
</profile>
</profiles>
|