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