Advertisement
Guest User

Untitled

a guest
Dec 12th, 2018
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. <build>
  2. <plugins>
  3. <plugin>
  4. <groupId>org.apache.maven.plugins</groupId>
  5. <artifactId>maven-checkstyle-plugin</artifactId>
  6. <version>2.17</version>
  7. <configuration>
  8. <failsOnError>true</failsOnError>
  9. <configLocation>checkstyle.xml</configLocation>
  10. <consoleOutput>true</consoleOutput>
  11. </configuration>
  12. <executions>
  13. <execution>
  14. <phase>package</phase>
  15. <goals>
  16. <goal>checkstyle</goal>
  17. </goals>
  18. </execution>
  19. </executions>
  20. </plugin>
  21. </plugins>
  22. </build>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement