I tried setting java.util.logging.config.file
in the MAVEN_OPTS
environment variable, which does not work but finally got it working by putting that system property in the pom.xml
(and of course creating an appropriate logging.properties
in src/test/resources
):
<plugins>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<systemProperties>
<property>
<name>java.util.logging.config.file</name>
<value>src/test/resources/logging.properties</value>
</property>
</systemProperties>
</configuration>
</plugin>
</plugins>