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