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-auth-oauth-client.git
The following commit(s) were added to refs/heads/master by this push:
new b4ac79c chore: work around testcontainers-java incompatibility with
Docker 29.0.0 (#36)
b4ac79c is described below
commit b4ac79cf0e6e71e8b6eb1a89b1321a520d2b7093
Author: Robert Munteanu <[email protected]>
AuthorDate: Wed Nov 12 10:09:39 2025 +0100
chore: work around testcontainers-java incompatibility with Docker 29.0.0
(#36)
---
pom.xml | 11 +++++++++++
1 file changed, 11 insertions(+)
diff --git a/pom.xml b/pom.xml
index edd43c0..36a5b46 100644
--- a/pom.xml
+++ b/pom.xml
@@ -270,11 +270,22 @@
<groupId>biz.aQute.bnd</groupId>
<artifactId>bnd-maven-plugin</artifactId>
</plugin>
+ <plugin>
+ <artifactId>maven-surefire-plugin</artifactId>
+ <configuration>
+ <systemPropertyVariables>
+ <!-- workaround for
https://github.com/testcontainers/testcontainers-java/issues/11212 -->
+ <api.version>1.44</api.version>
+ </systemPropertyVariables>
+ </configuration>
+ </plugin>
<plugin>
<artifactId>maven-failsafe-plugin</artifactId>
<configuration>
<systemPropertyVariables>
<sling.http.port>${http.port}</sling.http.port>
+ <!-- workaround for
https://github.com/testcontainers/testcontainers-java/issues/11212 -->
+ <api.version>1.44</api.version>
</systemPropertyVariables>
</configuration>
<executions>