I have a multi-module maven project with the following structure
myProject
+ parent
- pom.xml
+ moduleA
- pom.xml
+ moduleB
- pom.xml
I would configure jqassistant in the parent directory the same way I did in a simple project. But I guess, that it wouldn't find any classes. Must I really declare all module references again with
<scanIncludes>
<scanInclude>
<path>../moduleA/target/classes</path>
<scope>java:classpath</scope>
</scanInclude>
</scanIncludes>
or is there a more cleaner approach? Do I must do additional steps?