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