This is an automated email from the ASF dual-hosted git repository. fanningpj pushed a commit to branch 5.5.x in repository https://gitbox.apache.org/repos/asf/poi.git
commit a058d041174b63b324d7c3261b09eeb8e67952b1 Author: Dominik Stadler <[email protected]> AuthorDate: Tue Dec 2 19:45:06 2025 +0100 Add missing Mockito which is needed for module-based execution of tests This seems to only fail in Ant-based test-execution --- poi/src/test/java9/module-info.java | 1 + 1 file changed, 1 insertion(+) diff --git a/poi/src/test/java9/module-info.java b/poi/src/test/java9/module-info.java index 1fcc462b2d..71b03c78e9 100644 --- a/poi/src/test/java9/module-info.java +++ b/poi/src/test/java9/module-info.java @@ -110,6 +110,7 @@ module org.apache.poi.poi { requires net.bytebuddy; requires org.junit.jupiter.api; requires org.junit.jupiter.params; + requires org.mockito; exports org.apache.poi.hpsf.basic to org.junit.platform.commons; exports org.apache.poi.hssf.record.pivot to org.junit.platform.commons; --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
