How to add a dependency to Maven
Add the following com.rapidclipse : rap-security-auth-ldap maven dependency to the pom.xml
file with your favorite IDE (IntelliJ / Eclipse / Netbeans):
<dependency>
<groupId>com.rapidclipse</groupId>
<artifactId>rap-security-auth-ldap</artifactId>
<version>11.00.00-RAP-GA</version>
</dependency>
How to add a dependency to Gradle
Gradle Groovy DSL: Add the following com.rapidclipse : rap-security-auth-ldap gradle dependency to your build.gradle
file:
implementation 'com.rapidclipse:rap-security-auth-ldap:11.00.00-RAP-GA'
Gradle Kotlin DSL: Add the following com.rapidclipse : rap-security-auth-ldap gradle kotlin dependency to your build.gradle.kts
file:
implementation("com.rapidclipse:rap-security-auth-ldap:11.00.00-RAP-GA")
How to add a dependency to SBT Scala
SBT Scala: Add the following com.rapidclipse : rap-security-auth-ldap sbt scala dependency to your build.sbt
file:
libraryDependencies += "com.rapidclipse" % "rap-security-auth-ldap" % "11.00.00-RAP-GA"