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