Merge pull request #127 from kemitix/update-checkstyle-execution-phases
[tile] Execute `checkstyle:checkstyle` during the `test` phase
This commit is contained in:
commit
c43212f234
2 changed files with 10 additions and 1 deletions
|
@ -4,7 +4,8 @@ CHANGELOG
|
||||||
5.1.0
|
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
|
* [travis] Remove Travis CI support
|
||||||
|
|
||||||
5.0.0
|
5.0.0
|
||||||
|
|
|
@ -30,6 +30,14 @@
|
||||||
</configuration>
|
</configuration>
|
||||||
<executions>
|
<executions>
|
||||||
<execution>
|
<execution>
|
||||||
|
<id>checkstyle-test</id>
|
||||||
|
<phase>test</phase>
|
||||||
|
<goals>
|
||||||
|
<goal>checkstyle</goal>
|
||||||
|
</goals>
|
||||||
|
</execution>
|
||||||
|
<execution>
|
||||||
|
<id>checkstyle-verify</id>
|
||||||
<phase>verify</phase>
|
<phase>verify</phase>
|
||||||
<goals>
|
<goals>
|
||||||
<goal>check</goal>
|
<goal>check</goal>
|
||||||
|
|
Loading…
Reference in a new issue