Skip to content

Latest commit

 

History

History
46 lines (35 loc) · 1.17 KB

README.md

File metadata and controls

46 lines (35 loc) · 1.17 KB

Checkstyle

circleci maven central

  • Checkstyle configuration for SPT Java style

Usage

IDE

  • Checkout the repository and import configuration into your IDE.

     checkstyle/src/main/resources/com/github/spt-oss/checkstyle/checks.xml

Maven

  • Add a dependency in your POM.

     <plugin>
     	<groupId>org.apache.maven.plugins</groupId>
     	<artifactId>maven-checkstyle-plugin</artifactId>
     	<configuration>
     		<configLocation>com/github/spt-oss/checkstyle/checks.xml</configLocation>
     	</configuration>
     	<dependencies>
     		<dependency>
     			<groupId>com.puppycrawl.tools</groupId>
     			<artifactId>checkstyle</artifactId>
     			<version>8.15</version>
     		</dependency>
     		<dependency>
     			<groupId>com.github.spt-oss</groupId>
     			<artifactId>checkstyle</artifactId>
     			<version>8.15.0</version>
     		</dependency>
     	</dependencies>
     </plugin>

License

  • This software is released under the Apache License 2.0.