Add Checkstyle to verify target

pull/27/head
Andrew Gaul 2015-01-04 17:26:47 -08:00
rodzic d513ea2eae
commit 7093829090
1 zmienionych plików z 9 dodań i 0 usunięć

Wyświetl plik

@ -44,6 +44,15 @@
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<version>2.12.1</version>
<executions>
<execution>
<id>check</id>
<phase>verify</phase>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
<configuration>
<configLocation>src/main/resources/checkstyle.xml</configLocation>
<headerLocation>src/main/resources/copyright_header.txt</headerLocation>