This is an automated email from the ASF dual-hosted git repository.
olamy pushed a commit to branch master
in repository
https://gitbox.apache.org/repos/asf/maven-build-cache-extension.git
The following commit(s) were added to refs/heads/master by this push:
new 7a30100 Bump org.testcontainers:testcontainers-bom from 1.21.3 to
2.0.1 (#398)
7a30100 is described below
commit 7a30100fc32a613789ab8413260d0cfe22dd13ca
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
AuthorDate: Fri Oct 24 10:17:06 2025 +1000
Bump org.testcontainers:testcontainers-bom from 1.21.3 to 2.0.1 (#398)
* Bump org.testcontainers:testcontainers-bom from 1.21.3 to 2.0.1
Bumps
[org.testcontainers:testcontainers-bom](https://github.com/testcontainers/testcontainers-java)
from 1.21.3 to 2.0.1.
- [Release
notes](https://github.com/testcontainers/testcontainers-java/releases)
-
[Changelog](https://github.com/testcontainers/testcontainers-java/blob/main/CHANGELOG.md)
-
[Commits](https://github.com/testcontainers/testcontainers-java/compare/1.21.3...2.0.1)
---
updated-dependencies:
- dependency-name: org.testcontainers:testcontainers-bom
dependency-version: 2.0.1
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <[email protected]>
* fix wrong import
Signed-off-by: Olivier Lamy <[email protected]>
---------
Signed-off-by: dependabot[bot] <[email protected]>
Signed-off-by: Olivier Lamy <[email protected]>
Co-authored-by: dependabot[bot]
<49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Olivier Lamy <[email protected]>
---
pom.xml | 4 ++--
.../apache/maven/buildcache/BuildCacheMojosExecutionStrategyTest.java | 2 +-
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/pom.xml b/pom.xml
index 1ace242..a6f4b55 100644
--- a/pom.xml
+++ b/pom.xml
@@ -92,7 +92,7 @@ under the License.
<dependency>
<groupId>org.testcontainers</groupId>
<artifactId>testcontainers-bom</artifactId>
- <version>1.21.3</version>
+ <version>2.0.1</version>
<type>pom</type>
<scope>import</scope>
</dependency>
@@ -192,7 +192,7 @@ under the License.
</dependency>
<dependency>
<groupId>org.testcontainers</groupId>
- <artifactId>junit-jupiter</artifactId>
+ <artifactId>testcontainers-junit-jupiter</artifactId>
<scope>test</scope>
</dependency>
<dependency>
diff --git
a/src/test/java/org/apache/maven/buildcache/BuildCacheMojosExecutionStrategyTest.java
b/src/test/java/org/apache/maven/buildcache/BuildCacheMojosExecutionStrategyTest.java
index 085489e..976a3f2 100644
---
a/src/test/java/org/apache/maven/buildcache/BuildCacheMojosExecutionStrategyTest.java
+++
b/src/test/java/org/apache/maven/buildcache/BuildCacheMojosExecutionStrategyTest.java
@@ -25,6 +25,7 @@
import java.util.stream.Collectors;
import org.apache.commons.lang3.SystemUtils;
+import org.apache.commons.lang3.tuple.Pair;
import org.apache.maven.buildcache.xml.CacheConfig;
import org.apache.maven.buildcache.xml.build.CompletedExecution;
import org.apache.maven.buildcache.xml.build.PropertyValue;
@@ -37,7 +38,6 @@
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Nested;
import org.junit.jupiter.api.Test;
-import org.testcontainers.shaded.org.apache.commons.lang3.tuple.Pair;
import static org.junit.jupiter.api.Assertions.assertFalse;
import static org.junit.jupiter.api.Assertions.assertTrue;