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