Versions 0.5.0 and 0.6.1 fail with following error:
Error injecting: org.hjug.mavenreport.RefactorFirstMavenReport
java.lang.NoClassDefFoundError: org/codehaus/doxia/sink/Sink
My configuration of the plugin from my pom.xml
<plugin>
<groupId>org.hjug.refactorfirst.plugin</groupId>
<artifactId>refactor-first-maven-plugin</artifactId>
<version>0.6.1</version>
<configuration>
<showDetails>true</showDetails>
</configuration>
<executions>
<execution>
<id>refactor-first</id>
<phase>test</phase>
<goals>
<goal>report</goal>
</goals>
</execution>
</executions>
</plugin>
Note that this was previously working with version 0.4.0.
Other Potentially Relevant Details:
This is for a Java 17 project.