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

Fokko pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/parquet-java.git


The following commit(s) were added to refs/heads/master by this push:
     new a7b28bba2 GH-3618: Upgrade JUnit4 to JUnit 5.14.4 (#3619)
a7b28bba2 is described below

commit a7b28bba2ca305b6f4e18cec266bacd579327304
Author: Eduard Tudenhoefner <[email protected]>
AuthorDate: Thu Jun 25 22:42:37 2026 +0200

    GH-3618: Upgrade JUnit4 to JUnit 5.14.4 (#3619)
---
 pom.xml | 14 +++++++++++---
 1 file changed, 11 insertions(+), 3 deletions(-)

diff --git a/pom.xml b/pom.xml
index 9ffebc805..34a90ad66 100644
--- a/pom.xml
+++ b/pom.xml
@@ -97,6 +97,7 @@
     <avro.version>1.11.5</avro.version>
     <guava.version>33.6.0-jre</guava.version>
     <brotli-codec.version>0.1.1</brotli-codec.version>
+    <junit.version>5.14.4</junit.version>
     <mockito.version>5.23.0</mockito.version>
     <net.openhft.version>0.27ea1</net.openhft.version>
     
<build-helper-maven-plugin.version>3.6.1</build-helper-maven-plugin.version>
@@ -158,9 +159,15 @@
 
   <dependencies>
     <dependency>
-      <groupId>junit</groupId>
-      <artifactId>junit</artifactId>
-      <version>4.13.2</version>
+      <groupId>org.junit.jupiter</groupId>
+      <artifactId>junit-jupiter</artifactId>
+      <version>${junit.version}</version>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.junit.vintage</groupId>
+      <artifactId>junit-vintage-engine</artifactId>
+      <version>${junit.version}</version>
       <scope>test</scope>
     </dependency>
   </dependencies>
@@ -629,6 +636,7 @@
               <ignoreNonCompile>true</ignoreNonCompile>
               <ignoredDependencies>
                 
<dependency>javax.annotation:javax.annotation-api:jar:1.3.2</dependency>
+                <dependency>junit:junit</dependency>
               </ignoredDependencies>
             </configuration>
           </execution>

Reply via email to