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