Open simondean opened 9 years ago
Hi. The following line in the pom.xml of generated projects only executes unit tests place directly in the src/test/java/{package.name}/unit directory:
src/test/java/{package.name}/unit
<include>**/unit/*Test*.java</include>
The fix is to change the line to:
<include>**/unit/**/*Test*.java</include>
The change is adding the extra **/
**/
Hi. The following line in the pom.xml of generated projects only executes unit tests place directly in the
src/test/java/{package.name}/unit
directory:The fix is to change the line to:
The change is adding the extra
**/