I’ve created a checkstyle.xml as follows
<module name="Checker">
<module name="TreeWalker">
<module name="com.myapp.SerenityReportCheck">
<property name="classNamePattern" value=".*IT"/>
<property name="superClassName" value="APIBehaviourVerification"/>
</module>
</module>
</module>
The class com.myapp.SerenityReportCheck is a class in my project in src/test/java that gets compiled into target/test-classes.
whenever the checkstyle check runs though it can’t find it because target/test-classes doesn’t appear to be in the moduleLoadClassloader.
Is this possible to accomplish or will I have to create a subproject just to include the one class?