This is an automated email from the ASF dual-hosted git repository.
rombert pushed a commit to branch master
in repository
https://gitbox.apache.org/repos/asf/sling-org-apache-sling-starter.git
The following commit(s) were added to refs/heads/master by this push:
new 1cbbc9e chore: remove global 'stopMode' configuration for the
docker-maven-plugin (#522)
1cbbc9e is described below
commit 1cbbc9e89c4da195b83e2f3a7f257341858f28f9
Author: Robert Munteanu <[email protected]>
AuthorDate: Tue Sep 9 11:07:11 2025 +0200
chore: remove global 'stopMode' configuration for the docker-maven-plugin
(#522)
This is a parameter for the 'image/run' element and its usage currently
leads to warnings
[WARNING] Parameter 'stopMode' is unknown for plugin
'docker-maven-plugin:0.46.0:build (build-docker-image)'
[WARNING] Parameter 'stopMode' is unknown for plugin
'docker-maven-plugin:0.46.0:push (build-docker-image)'
[WARNING] Parameter 'stopMode' is unknown for plugin
'docker-maven-plugin:0.46.0:start (start-mongo)'
[WARNING] Parameter 'stopMode' is unknown for plugin
'docker-maven-plugin:0.46.0:stop (stop-mongo)'
Let's remove it for now and, if needed, add it back on a per-image basis.
---
pom.xml | 1 -
1 file changed, 1 deletion(-)
diff --git a/pom.xml b/pom.xml
index 9ee0ca4..df0a80d 100644
--- a/pom.xml
+++ b/pom.xml
@@ -343,7 +343,6 @@
<configuration>
<skip>${docker.skip}</skip>
<containerNamePattern>%e</containerNamePattern>
- <stopMode>kill</stopMode>
</configuration>
<executions>
<execution>