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