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