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