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