I am just getting started with docx4j version 3.2.1.
I am wondering about this warning message I see on the log:
WARN org.docx4j.openpackaging.io3.Save sourcePartStore undefined
Looking at the code, it seams as if OpcPackage.getSourcePartStore() is expected to be set already.
I will receive this warning if I do something simple like this:
WordprocessingMLPackage pkg = WordprocessingMLPackage.createPackage();
pkg.save(file);
Am I missing a dependency, that would hook this automatically? This could be the case, since ...