How to add a dependency to Maven
Add the following ml.calumma.web : CalummaBackend maven dependency to the pom.xml
file with your favorite IDE (IntelliJ / Eclipse / Netbeans):
<dependency>
<groupId>ml.calumma.web</groupId>
<artifactId>CalummaBackend</artifactId>
<version>0.3.1</version>
</dependency>
How to add a dependency to Gradle
Gradle Groovy DSL: Add the following ml.calumma.web : CalummaBackend gradle dependency to your build.gradle
file:
implementation 'ml.calumma.web:CalummaBackend:0.3.1'
Gradle Kotlin DSL: Add the following ml.calumma.web : CalummaBackend gradle kotlin dependency to your build.gradle.kts
file:
implementation("ml.calumma.web:CalummaBackend:0.3.1")
How to add a dependency to SBT Scala
SBT Scala: Add the following ml.calumma.web : CalummaBackend sbt scala dependency to your build.sbt
file:
libraryDependencies += "ml.calumma.web" % "CalummaBackend" % "0.3.1"