Merge pull request #127 from kemitix/update-checkstyle-execution-phases

[tile] Execute `checkstyle:checkstyle` during the `test` phase
This commit is contained in:
Paul Campbell 2018-10-07 17:52:53 +01:00 committed by GitHub
commit c43212f234
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 10 additions and 1 deletions

View file

@ -4,7 +4,8 @@ CHANGELOG
5.1.0
-----
* [jenkins] Remove Build under Java 9 step
* [tile] Execute `checkstyle:checkstyle` during the `test` phase
* [jenkins] Replace Java 9 and 10 steps with a single Java 11 step
* [travis] Remove Travis CI support
5.0.0

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>