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