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