My apologies - it's another (I'm sure) stupid question (I'm still a Java noob). As before
https://www.docx4java.org/forums/docx-java-f6/converting-docx-to-html-using-intellij-and-maven-t2978.html?sid=50d296c922fc798a947a6e3ec26538b0, this is IntelliJ and Maven.
The conversion works well (thank you) with the following code - except that there's an error message embedded in the output "
TO HIDE THESE MESSAGES, TURN OFF debug level logging for org.docx4j.convert.out.common.writer.AbstractMessageWriter":
Maven:
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.example</groupId>
<artifactId>DocumentConverter</artifactId>
<version>1.0-SNAPSHOT</version>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>15</source>
<target>15</target> ...