Using IntelliJ. Added Jars to project but the following imports are not found. What am I missing? Items in bold are NOT FOUND even though Jars are included and the rest of org.docx4j references are ok e.g. import org.docx4j.fonts.Mapper;, import org.docx4j.samples.AbstractSample; etc.
import org.docx4j.Docx4J;
import org.docx4j.convert.out.FOSettings;
import org.docx4j.fonts.IdentityPlusMapper;
import org.docx4j.fonts.Mapper;
import org.docx4j.fonts.PhysicalFont;
import org.docx4j.fonts.PhysicalFonts;
import org.docx4j.openpackaging.packages.WordprocessingMLPackage;
import org.docx4j.samples.AbstractSample;
/**
* Demo of PDF output.
*
* PDF output is via XSL FO.
* First XSL FO is created, then FOP
* is used to convert that to PDF.
........
in addition these lines can not compile. Items in bold have dependency on imports that are not found. Strange!
SampleDocument.createContent(wordMLPackage.getMainDocumentPart());
FOSettings foSettings = Docx4J.createFOSettings();