Skip to content

Commit 0b82232

Browse files
fix(integration tests) #34422 : Docker Maven Plugin fails when running test-integration-ide command (#34423)
### Proposed Changes The Docker Maven Plugin version 0.43.4 is incompatible with Docker App 29.x, causing the test-integration-ide command to fail when developers attempt to run integration tests locally. For my specific scenario, this is the version I'm currently running: <img width="1548" height="1042" alt="Screenshot 2026-01-27 at 2 42 09 PM" src="https://github.com/user-attachments/assets/e88f511f-a8c2-4f9a-b8df-7afe6a3ab314" /> #### Solution - Updated Docker Maven Plugin: Bumped version.docker-maven.plugin from 0.43.4 to 0.48.0 in parent/pom.xml:157 - Adjusted justfile port configurations: Updated default port settings in dev-run-debug-suspend and dev-start-on-port commands to prevent port conflicts #### Changes - parent/pom.xml: Updated Docker Maven plugin version to 0.48.0 - justfile: Updated default port configurations for debug and development commands #### Testing - ✅ `just test-integration-ide` command now works successfully with Docker App 29.x - ✅ Docker containers start and stop properly - ✅ Integration tests can run in IDE with Docker services #### Impact - Developers using Docker App 29.x can now run just test-integration-ide without errors - No breaking changes to existing workflows - Maintains backward compatibility with existing Docker configurations Fixes #34422 Co-authored-by: erickgonzalez <[email protected]>
1 parent 28cf518 commit 0b82232

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

parent/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@
156156
<version.versions.plugin>2.8.1</version.versions.plugin>
157157
<version.maven.plugin.plugin>3.8.1</version.maven.plugin.plugin>
158158
<version.war.plugin>3.2.3</version.war.plugin>
159-
<version.docker-maven.plugin>0.43.4</version.docker-maven.plugin>
159+
<version.docker-maven.plugin>0.48.0</version.docker-maven.plugin>
160160
<test.working.dir>${project.build.directory}/testdata</test.working.dir>
161161
<test.temp.dir>${test.working.dir}/temp</test.temp.dir>
162162

0 commit comments

Comments
 (0)