This is an automated email from the ASF dual-hosted git repository.

slachiewicz 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 c8c1261  JUnit Jupiter migration from JUnit 4.x (#402)
c8c1261 is described below

commit c8c1261f70829687724d8deb5fdb075699f8ec1c
Author: Sylwester Lachiewicz <[email protected]>
AuthorDate: Mon Nov 3 22:10:34 2025 +0100

    JUnit Jupiter migration from JUnit 4.x (#402)
    
    
    Co-authored-by: Moderne <[email protected]>
---
 pom.xml                                                             | 6 ++++++
 .../java/org/apache/maven/buildcache/xml/CacheConfigImplTest.java   | 4 ++--
 2 files changed, 8 insertions(+), 2 deletions(-)

diff --git a/pom.xml b/pom.xml
index a1edc6c..5c2d61c 100644
--- a/pom.xml
+++ b/pom.xml
@@ -178,6 +178,12 @@ under the License.
       <artifactId>maven-verifier</artifactId>
       <version>1.8.0</version>
       <scope>test</scope>
+      <exclusions>
+        <exclusion>
+          <groupId>junit</groupId>
+          <artifactId>junit</artifactId>
+        </exclusion>
+      </exclusions>
     </dependency>
     <dependency>
       <groupId>org.apache.maven</groupId>
diff --git 
a/src/test/java/org/apache/maven/buildcache/xml/CacheConfigImplTest.java 
b/src/test/java/org/apache/maven/buildcache/xml/CacheConfigImplTest.java
index b710617..721e7cc 100644
--- a/src/test/java/org/apache/maven/buildcache/xml/CacheConfigImplTest.java
+++ b/src/test/java/org/apache/maven/buildcache/xml/CacheConfigImplTest.java
@@ -57,9 +57,9 @@
 import org.mockito.junit.jupiter.MockitoSettings;
 import org.mockito.quality.Strictness;
 
-import static org.junit.Assert.assertFalse;
-import static org.junit.Assert.assertNull;
 import static org.junit.jupiter.api.Assertions.assertEquals;
+import static org.junit.jupiter.api.Assertions.assertFalse;
+import static org.junit.jupiter.api.Assertions.assertNull;
 import static org.junit.jupiter.api.Assertions.assertTrue;
 import static org.mockito.Mockito.doThrow;
 import static org.mockito.Mockito.mock;

Reply via email to