diff options
-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>
|