vert-x / vertx-maven

Vert.x 2.x is deprecated - use instead
https://github.com/vert-x3/vertx-maven-starter
Other
22 stars 31 forks source link

Unit tests in subdirecties do not execute #44

Open simondean opened 9 years ago

simondean commented 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:

            <include>**/unit/*Test*.java</include>

The fix is to change the line to:

            <include>**/unit/**/*Test*.java</include>

The change is adding the extra **/