| 
         Mojarra 2.0
       | 
JSF Community
       | 
JavaServer TM Faces technology simplifies building user interfaces for JavaServer applications. Developers of various skill levels can quickly build web applications by:
<repository>
  <id>java.net</id>
  <name>java.net</name>
  <url>http://download.java.net/maven/2</url>
</repository>
The recommend way to use JSF with Maven is to develop on a Java EE
certified container and declare a <provided> scope
dependency on the appropriate version of the JavaEE API jar.
<dependency>
  <groupId>javax</groupId>
  <artifactId>javaee-api</artifactId>
  <version>6.0</version>
  <scope>provided</scope>
</dependency>
If you need to introduce a hard dependency on this particular release of Mojarra, you may use the above repository and the following metadata
<dependency>
  <groupId>com.sun.faces</groupId>
  <artifactId>jsf-api</artifactId>
  <version>2.0.10-b09</version>
  <scope>compile</scope>
</dependency>
<dependency>
  <groupId>com.sun.faces</groupId>
  <artifactId>jsf-impl</artifactId>
  <version>2.0.10-b09</version>
  <scope>compile</scope>
</dependency>
Documentation for this release consists of the following: