This is an automated email from the ASF dual-hosted git repository. centic9 pushed a commit to branch trunk in repository https://gitbox.apache.org/repos/asf/poi.git
commit 5ceaf9f3eb5f4e26385216526ad217b8515e06fc Author: Dominik Stadler <[email protected]> AuthorDate: Sat Jun 13 13:17:30 2026 +0200 Add missing dependency to commons-csv in poi-integration Needed since the stress-xls was converted to a csv and thus commons-csv is used for parsing now. --- build.xml | 1 + poi-integration/src/test/java9/module-info.java | 1 + 2 files changed, 2 insertions(+) diff --git a/build.xml b/build.xml index 3a4cc0cf28..9264b3016d 100644 --- a/build.xml +++ b/build.xml @@ -1515,6 +1515,7 @@ under the License. <pathelement path="${main-tests.lib}"/> <pathelement path="${ooxml.lib}"/> <pathelement path="${ooxml-provided.lib}"/> + <pathelement path="${ooxml-tests.lib}"/> </modulepath> </javac> diff --git a/poi-integration/src/test/java9/module-info.java b/poi-integration/src/test/java9/module-info.java index 996cc609ea..6ba7e60e4a 100644 --- a/poi-integration/src/test/java9/module-info.java +++ b/poi-integration/src/test/java9/module-info.java @@ -22,6 +22,7 @@ module org.apache.poi.stress { requires java.desktop; requires org.apache.commons.collections4; + requires org.apache.commons.csv; requires org.apache.commons.io; requires transitive org.apache.poi.poi; requires org.apache.poi.examples; --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
