[tile] Execute checkstyle:checkstyle during the test phase

This commit is contained in:
Paul Campbell 2018-10-07 17:39:09 +01:00
parent ebe783d604
commit 3bc12cd271
2 changed files with 9 additions and 0 deletions

View file

@ -4,6 +4,7 @@ CHANGELOG
5.1.0
-----
* [tile] Execute `checkstyle:checkstyle` during the `test` phase
* [jenkins] Remove Build under Java 9 step
* [travis] Remove Travis CI support

View file

@ -30,6 +30,14 @@
</configuration>
<executions>
<execution>
<id>checkstyle-test</id>
<phase>test</phase>
<goals>
<goal>checkstyle</goal>
</goals>
</execution>
<execution>
<id>checkstyle-verify</id>
<phase>verify</phase>
<goals>
<goal>check</goal>