You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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:
<include>**/unit/*Test*.java</include>
The fix is to change the line to:
<include>**/unit/**/*Test*.java</include>
The change is adding the extra **/
The text was updated successfully, but these errors were encountered:
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
**/
The text was updated successfully, but these errors were encountered: