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