plutext / docx4j

JAXB-based Java library for Word docx, Powerpoint pptx, and Excel xlsx files

Home Page:https://www.docx4java.org/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

docx4j-core module-info.java requires error.prone.annotations

kovacevicm opened this issue · comments

When running our project with docx4-core 11.3.2 dependency, when module path is used, we get the following error message:
java.lang.module.FindException: Module error.prone.annotations not found, required by org.docx4j.core

docx4j-core 11.3.2 has a maven dependency to com.google.errorprone:error_prone_annotations@2.3.3, which is an unnamed module.
The more recent versions of error_prone_annotations define the Automatic-Module-Name in the manifest as com.google.errorprone.annotations, so unless I'm missing something the line at https://github.com/plutext/docx4j/blob/VERSION_11_3_2/docx4j-core/src/main/java/module-info.java#L31 doesn't match either.