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
commit ce054e993f586731e8b8c07bd0029fb692bbc285 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 8904ef86875..ab2500dfdb6 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>
