diff options
Diffstat (limited to 'gwtquery-core/pom.xml')
-rw-r--r-- | gwtquery-core/pom.xml | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/gwtquery-core/pom.xml b/gwtquery-core/pom.xml index 65aaf451..0a56bc8c 100644 --- a/gwtquery-core/pom.xml +++ b/gwtquery-core/pom.xml @@ -148,10 +148,21 @@ <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-checkstyle-plugin</artifactId> - <version>2.13</version> <configuration> <configLocation>src/main/code-style/gwt-checkstyle.xml</configLocation> </configuration> + <executions> + <execution> + <id>checkstyle</id> + <phase>validate</phase> + <goals> + <goal>check</goal> + </goals> + <configuration> + <failOnViolation>true</failOnViolation> + </configuration> + </execution> + </executions> </plugin> </plugins> </build> |