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 Lars Kühne Rick Giles Oleg Sukhodolsky Michael Studman Travis Schneeberger
文件下载
文件名 操作
checkstyle-5.4.jar 下载
checkstyle-5.4.pom 下载
checkstyle-5.4-sources.jar 下载
Apache Maven
<dependency>
  <groupId>com.puppycrawl.tools</groupId>
  <artifactId>checkstyle</artifactId>
  <version>5.4</version>
</dependency>
Gradle Groovy
implementation 'com.puppycrawl.tools:checkstyle:5.4'
Gradle Kotlin
implementation("com.puppycrawl.tools:checkstyle:5.4")
Scala SBT
libraryDependencies += "com.puppycrawl.tools" % "checkstyle" % "5.4"
Groovy Grape
@Grapes(
  @Grab(group='com.puppycrawl.tools', module='checkstyle', version='5.4')
)
Apache Ivy
<dependency org="com.puppycrawl.tools" name="checkstyle" rev="5.4" />
Leiningen
[com.puppycrawl.tools/checkstyle "5.4"]
Apache Buildr
'com.puppycrawl.tools:checkstyle:jar:5.4'