This is an automated email from the ASF dual-hosted git repository.
zhangduo pushed a commit to branch branch-3
in repository https://gitbox.apache.org/repos/asf/hbase.git
The following commit(s) were added to refs/heads/branch-3 by this push:
new 7e02c52c172 HBASE-29939 Upgrade hbase-logging to use junit5 (#7821)
7e02c52c172 is described below
commit 7e02c52c172d6ee6daa8b805a5bec2cf9fea831c
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 a1521eb750b..46ed6801c36 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>