This is an automated email from the ASF dual-hosted git repository.
zhangduo pushed a commit to branch branch-2.5
in repository https://gitbox.apache.org/repos/asf/hbase.git
The following commit(s) were added to refs/heads/branch-2.5 by this push:
new bf2ac855e64 HBASE-29939 Upgrade hbase-logging to use junit5 (#7821)
bf2ac855e64 is described below
commit bf2ac855e6425569238551a3542d11d89ccf9c51
Author: Liu Xiao <[email protected]>
AuthorDate: Fri Mar 6 11:28:31 2026 +0800
HBASE-29939 Upgrade hbase-logging to use junit5 (#7821)
Signed-off-by: Duo Zhang <[email protected]>
(cherry picked from commit ac62af67304d73d4b4ce75ce9bace0fe9e4a7303)
---
hbase-logging/pom.xml | 27 +++++++--------------------
1 file changed, 7 insertions(+), 20 deletions(-)
diff --git a/hbase-logging/pom.xml b/hbase-logging/pom.xml
index bca6aa8942e..1c3d1473a24 100644
--- a/hbase-logging/pom.xml
+++ b/hbase-logging/pom.xml
@@ -42,26 +42,6 @@
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>
- <dependency>
- <groupId>org.junit.jupiter</groupId>
- <artifactId>junit-jupiter-api</artifactId>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>org.junit.jupiter</groupId>
- <artifactId>junit-jupiter-engine</artifactId>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>org.junit.jupiter</groupId>
- <artifactId>junit-jupiter-params</artifactId>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>org.junit.vintage</groupId>
- <artifactId>junit-vintage-engine</artifactId>
- <scope>test</scope>
- </dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>jcl-over-slf4j</artifactId>
@@ -115,6 +95,13 @@
<groupId>net.revelc.code</groupId>
<artifactId>warbucks-maven-plugin</artifactId>
</plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-surefire-plugin</artifactId>
+ <configuration>
+ <skipTests>true</skipTests>
+ </configuration>
+ </plugin>
</plugins>
</build>
</project>