Checkstyle Maven Dependency - RameshMF/java-json-processing-tutorial GitHub Wiki

Checkstyle is a development tool to help programmers write Java code that adheres to a coding standard

Checkstyle Maven Dependency

Copy below Checkstyle maven dependency and paste in your project pom.xml file:

<!-- https://mvnrepository.com/artifact/com.puppycrawl.tools/checkstyle -->
<dependency>
    <groupId>com.puppycrawl.tools</groupId>
    <artifactId>checkstyle</artifactId>
    <version>8.27</version>
</dependency>

Checkstyle Gradle Dependency

Copy below Checkstyle gradle dependency and paste in your project build.gradle file:

// https://mvnrepository.com/artifact/com.puppycrawl.tools/checkstyle
compile group: 'com.puppycrawl.tools', name: 'checkstyle', version: '8.27'

Download JAR File

https://repo1.maven.org/maven2/com/puppycrawl/tools/checkstyle/8.27/checkstyle-8.27.jar

Check for Latest Release

https://mvnrepository.com/artifact/com.puppycrawl.tools/checkstyle

Reference

https://mvnrepository.com/artifact/com.puppycrawl.tools/checkstyle

⚠️ **GitHub.com Fallback** ⚠️