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