This is an automated email from the ASF dual-hosted git repository.
liuxiaocs7 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/hbase.git
The following commit(s) were added to refs/heads/master by this push:
new f1023e6b830 HBASE-30227 Disallow JUnit4 imports in source code (#8362)
f1023e6b830 is described below
commit f1023e6b830307f027a042b9ff995c8b227955ba
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 e2a8a5afb3c..591e9916c44 100644
--- a/pom.xml
+++ b/pom.xml
@@ -2761,7 +2761,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>