• Update Testcontainers version to 1.19.4
  • Add service connection for Testcontainers Artemis (available in version 1.19.4)
  • Add service connection for Docker Compose Artemis

Comment From: eddumelendez

It fails because of the change in commons-compress. See diff https://github.com/apache/commons-compress/compare/rel/commons-compress-1.24.0...rel/commons-compress-1.25.0#diff-19b93108b5b4d5b1f4826b7dce61b416beb5a02d928ae8868412d971601ab201R568. Current common-compress version in spring-boot-parent is 1.23.0. Testcontainers 1.19.3 uses commons-compress 1.23.0 and Testcontainers 1.19.4 uses commons-compress version 1.25.0. I noticed the change when submitting this PR.

Comment From: mhalbritter

I have rebased the PR on top of main and have some polishing changes in this branch: https://github.com/mhalbritter/spring-boot/tree/pr/39311

This fixes the docker compose integration, too.

I'd like to do the Testcontainers version update in a separate issue, however.

Comment From: mhalbritter

Thanks a lot, Eddú!