Release 1.0.4
Minor enhancements:
- Support for literal footnote callouts
- Added color properties for table cell borders
Packaging:
- Release package now includes all dependency jars to work around issue with the all-dependencies jar not working with log4j under Java 11+
To run using dependency jars, include all the jars in the Java classpath, i.e., -cp "./lib/*"
and call class org.wordinator.docx.MakeDocx
This way of calling is demonstrated in the Ant build.xml in the top level of the release package:
<java classpath="${java.lib.dir}/*" classname="org.wordinator.xml2docx.MakeDocx" failonerror="true" fork="true">
<arg line="-i ${input.html}"/>
<arg line="-o ${output.dir}"/>
<arg line="-x ${html2docx.xsl}"/>
<arg line="-t ${html2docx.dotx}"/>
</java>