Maven Coordinates

Apache Maven

<dependency>
  <groupId>org.mybatis</groupId>
  <artifactId>jpetstore</artifactId>
  <version>6.2.0</version>
  <type>war</type>
</dependency>

Apache Ivy

<dependency org="org.mybatis" name="jpetstore" rev="6.2.0">
  <artifact name="jpetstore" type="war" />
</dependency>

Groovy Grape

@Grapes(
@Grab(group='org.mybatis', module='jpetstore', version='6.2.0')
)

Gradle/Grails

implementation 'org.mybatis:jpetstore:6.2.0'

Scala SBT

libraryDependencies += "org.mybatis" % "jpetstore" % "6.2.0"

Leiningen

[org.mybatis/jpetstore "6.2.0"]