c

checkstyle

Checkstyle is a development tool to help programmers write Java code that adheres to a coding standard
http://checkstyle.sourceforge.net/
GNU Lesser General Public License
Oliver Burn Roman Ivanov Daniil Yaroslavtsev Ivan Sopov Lars Kühne Rick Giles Oleg Sukhodolsky Michael Studman Travis Schneeberger
Files download
File Operation
checkstyle-5.9.jar download
checkstyle-5.9.pom download
checkstyle-5.9-sources.jar download
Apache Maven
<dependency>
  <groupId>com.puppycrawl.tools</groupId>
  <artifactId>checkstyle</artifactId>
  <version>5.9</version>
</dependency>
Gradle Groovy
implementation 'com.puppycrawl.tools:checkstyle:5.9'
Gradle Kotlin
implementation("com.puppycrawl.tools:checkstyle:5.9")
Scala SBT
libraryDependencies += "com.puppycrawl.tools" % "checkstyle" % "5.9"
Groovy Grape
@Grapes(
  @Grab(group='com.puppycrawl.tools', module='checkstyle', version='5.9')
)
Apache Ivy
<dependency org="com.puppycrawl.tools" name="checkstyle" rev="5.9" />
Leiningen
[com.puppycrawl.tools/checkstyle "5.9"]
Apache Buildr
'com.puppycrawl.tools:checkstyle:jar:5.9'