Skip to content

Commit c789316

Browse files
vjkoskelaBrandonArp
authored andcommitted
Added configuration to docker plugin to skip start and stop if integration tests are being skipped. (#25)
1 parent c849892 commit c789316

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

pom.xml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -289,13 +289,19 @@
289289
<goals>
290290
<goal>start</goal>
291291
</goals>
292+
<configuration>
293+
<skip>${skipIntegrationTests}</skip>
294+
</configuration>
292295
</execution>
293296
<execution>
294297
<id>stop</id>
295298
<phase>post-integration-test</phase>
296299
<goals>
297300
<goal>stop</goal>
298301
</goals>
302+
<configuration>
303+
<skip>${skipIntegrationTests}</skip>
304+
</configuration>
299305
</execution>
300306
<execution>
301307
<id>push</id>

0 commit comments

Comments
 (0)