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 a1e76048a90 HBASE-29979 Remove JUnit5 related dependencies in
hbase-protocol-shaded (#7885)
a1e76048a90 is described below
commit a1e76048a908c9cfa665f68c1f606786a98ee147
Author: Liu Xiao <[email protected]>
AuthorDate: Sun Mar 8 23:02:22 2026 +0800
HBASE-29979 Remove JUnit5 related dependencies in hbase-protocol-shaded
(#7885)
Signed-off-by: Duo Zhang <[email protected]>
(cherry picked from commit 418a3a6450ff7a4badae15269c71c54cdbd15df8)
---
hbase-protocol-shaded/pom.xml | 36 +++---------------------------------
1 file changed, 3 insertions(+), 33 deletions(-)
diff --git a/hbase-protocol-shaded/pom.xml b/hbase-protocol-shaded/pom.xml
index 50599ffaa61..3c2679868ed 100644
--- a/hbase-protocol-shaded/pom.xml
+++ b/hbase-protocol-shaded/pom.xml
@@ -41,26 +41,6 @@
<groupId>org.apache.hbase.thirdparty</groupId>
<artifactId>hbase-shaded-protobuf</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>
</dependencies>
<build>
<plugins>
@@ -73,19 +53,9 @@
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
- <!-- Always skip the second part executions, since we only run simple
unit tests in this module -->
- <executions>
- <execution>
- <id>secondPartTestsExecution</id>
- <goals>
- <goal>test</goal>
- </goals>
- <phase>test</phase>
- <configuration>
- <skip>true</skip>
- </configuration>
- </execution>
- </executions>
+ <configuration>
+ <skipTests>true</skipTests>
+ </configuration>
</plugin>
<plugin>
<groupId>org.xolstice.maven.plugins</groupId>