]> source.dussan.org Git - poi.git/commitdiff
add commons-compress to module-info
authorPJ Fanning <fanningpj@apache.org>
Wed, 7 Jul 2021 13:28:33 +0000 (13:28 +0000)
committerPJ Fanning <fanningpj@apache.org>
Wed, 7 Jul 2021 13:28:33 +0000 (13:28 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1891362 13f79535-47bb-0310-9956-ffa450edef68

poi-ooxml/src/main/java9/module-info.java
poi-scratchpad/src/main/java9/module-info.java

index 317a9d9ca9b11a42e0d5e108637bd74a9b1bd2fd..151948597d845a5c4571fc7d5f9bedae4aaf4b52 100644 (file)
@@ -21,6 +21,8 @@ module org.apache.poi.ooxml {
     requires transitive org.apache.poi.ooxml.schemas;
     requires org.apache.commons.collections4;
     requires org.apache.commons.codec;
+    requires org.apache.commons.compress;
+    requires org.apache.commons.io;
     requires commons.math3;
     requires SparseBitSet;
     requires org.apache.logging.log4j;
index 1e90ca572df505d89e85904932a667311d356b90..57070d405bcb56ad275c266caabc57fcc9a548ba 100644 (file)
@@ -19,6 +19,7 @@ module org.apache.poi.scratchpad {
     requires transitive org.apache.poi.poi;
     requires java.desktop;
     requires commons.math3;
+    requires org.apache.commons.io;
     requires org.apache.logging.log4j;
 
     provides org.apache.poi.extractor.ExtractorProvider with org.apache.poi.extractor.ole2.OLE2ScratchpadExtractorFactory;