This is an automated email from the ASF dual-hosted git repository.
liuxiaocs7 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 6448582173d HBASE-30227 Disallow JUnit4 imports in source code (#8362)
6448582173d is described below
commit 6448582173ded2c16f9e6b530da2486fc32b14e5
Author: Xiao Liu <[email protected]>
AuthorDate: Wed Jun 17 20:07:11 2026 +0800
HBASE-30227 Disallow JUnit4 imports in source code (#8362)
Signed-off-by: Wellington Chevreuil <[email protected]>
Signed-off-by: Duo Zhang <[email protected]>
Signed-off-by: Peng Lu <[email protected]>
---
pom.xml | 7 +++++++
1 file changed, 7 insertions(+)
diff --git a/pom.xml b/pom.xml
index 89f295e3900..0be1fd3fd15 100644
--- a/pom.xml
+++ b/pom.xml
@@ -2659,7 +2659,14 @@
<reason>Use junit5 instead</reason>
<bannedImports>
<bannedImport>junit.framework.**</bannedImport>
+ <bannedImport>org.junit.**</bannedImport>
+ <bannedImport>static org.junit.Assert.**</bannedImport>
+ <bannedImport>static org.junit.Assume.**</bannedImport>
</bannedImports>
+ <allowedImports>
+ <allowedImport>org.junit.jupiter.**</allowedImport>
+ <allowedImport>org.junit.platform.**</allowedImport>
+ </allowedImports>
</restrictImports>
</rules>
</configuration>