Maven Coordinates
Apache Maven
<dependency>
<groupId>com.mycompany.app</groupId>
<artifactId>maven-site-github-example</artifactId>
<version>1.0-SNAPSHOT</version>
</dependency>
Apache Ivy
<dependency org="com.mycompany.app" name="maven-site-github-example" rev="1.0-SNAPSHOT">
<artifact name="maven-site-github-example" type="jar" />
</dependency>
Groovy Grape
@Grapes(
@Grab(group='com.mycompany.app', module='maven-site-github-example', version='1.0-SNAPSHOT')
)
Gradle/Grails
implementation 'com.mycompany.app:maven-site-github-example:1.0-SNAPSHOT'
Scala SBT
libraryDependencies += "com.mycompany.app" % "maven-site-github-example" % "1.0-SNAPSHOT"
Leiningen
[com.mycompany.app/maven-site-github-example "1.0-SNAPSHOT"]