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