MVN

com.sun.faces : jsf-spi

Maven & Gradle

Jan 20, 2012

Public API declaration for the Mojarra container Service Provider Interface · This API declares some contracts for connecting Mojarra to its host container. mvn -Prelease-sign-artifacts -Dgpg.passphrase=PASSPHRASE deploy

<dependency>
    <groupId>com.sun.faces</groupId>
    <artifactId>jsf-spi</artifactId>
    <version>1.0</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of com.sun.faces : jsf-spi to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 1.0

All Versions

Choose a version of com.sun.faces : jsf-spi to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
1.0
jsf-spi-1.0
CVE-2018-14371

How to add a dependency to Maven

Add the following com.sun.faces : jsf-spi maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>com.sun.faces</groupId>
    <artifactId>jsf-spi</artifactId>
    <version>1.0</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following com.sun.faces : jsf-spi gradle dependency to your build.gradle file:

implementation 'com.sun.faces:jsf-spi:1.0'

Gradle Kotlin DSL: Add the following com.sun.faces : jsf-spi gradle kotlin dependency to your build.gradle.kts file:

implementation("com.sun.faces:jsf-spi:1.0")

How to add a dependency to SBT Scala

SBT Scala: Add the following com.sun.faces : jsf-spi sbt scala dependency to your build.sbt file:

libraryDependencies += "com.sun.faces" % "jsf-spi" % "1.0"

Advertisement