Maven Coordinates

Apache Maven

<dependency>
  <groupId>com.puppycrawl.tools</groupId>
  <artifactId>checkstyle</artifactId>
  <version>11.0.0-SNAPSHOT</version>
</dependency>

Apache Ivy

<dependency org="com.puppycrawl.tools" name="checkstyle" rev="11.0.0-SNAPSHOT">
  <artifact name="checkstyle" type="jar" />
</dependency>

Groovy Grape

@Grapes(
@Grab(group='com.puppycrawl.tools', module='checkstyle', version='11.0.0-SNAPSHOT')
)

Gradle/Grails

implementation 'com.puppycrawl.tools:checkstyle:11.0.0-SNAPSHOT'

Scala SBT

libraryDependencies += "com.puppycrawl.tools" % "checkstyle" % "11.0.0-SNAPSHOT"

Leiningen

[com.puppycrawl.tools/checkstyle "11.0.0-SNAPSHOT"]