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