Skip to content

Commit

Permalink
webui-api shall also run test classes ending with *Tests.java
Browse files Browse the repository at this point in the history
518: Picking prototype (v6) 

Task-Url: #518
  • Loading branch information
metas-ts committed Jul 24, 2017
1 parent c835944 commit a444203
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -280,6 +280,25 @@
</executions>
</plugin>

<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.19.1</version>
<configuration>
<systemPropertyVariables>
<concordion.output.dir>${acceptance.reports.dir}</concordion.output.dir>
</systemPropertyVariables>
<includes>
<!-- default inclusions, see http://maven.apache.org/surefire/maven-surefire-plugin/examples/inclusion-exclusion.html -->
<include>**/Test*.java</include>
<include>**/*Test.java</include>
<include>**/*TestCase.java</include>

<!-- additional include, because we often use that pattern -->
<include>**/*Tests.java</include>
</includes>
</configuration>
</plugin>

</plugins>
</build>
</project>

0 comments on commit a444203

Please sign in to comment.