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