This tutorial will guide you through configuration CheckStyle in your Maven application and install the Eclipse plugin.
First Open Eclipse MarketPlace then search for “Checkstyle”.
Next you need to click Install and accept the license agreement reading it first. Then it will complete and need to restart Eclipse.
Once Eclipse opens again you right click the project(s) you want to activate CheckStyle for and activate it. There are also properties you can configure through Eclipse’s preferences. I suggest you go there and configure it. You can also customize your checkstyle or make your own. Up to you.
Pom.xml
Build
When you run “mvn checkstyle:check” if will then run and will fail the build if you have any issues.
<build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-checkstyle-plugin</artifactId> <version>3.0.0</version> <executions> <execution> <id>validate</id> <phase>validate</phase> <configuration> <encoding>UTF-8</encoding> <consoleOutput>true</consoleOutput> <failsOnError>true</failsOnError> <linkXRef>false</linkXRef> </configuration> <goals> <goal>check</goal> </goals> </execution> </executions> </plugin> </plugins> </build>
Reporting
You can generate a HTML report with the following by running “mvn checkstyle:checkstyle”.
<reporting> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-checkstyle-plugin</artifactId> <version>3.0.0</version> <reportSets> <reportSet> <reports> <report>checkstyle</report> </reports> </reportSet> </reportSets> </plugin> </plugins> </reporting>
You must be logged in to post a comment.