Sun's implementation of the JSF 2.0 specification..
Here is the list of declaration for jsf-impl. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>com.sun.faces</groupId> <artifactId>jsf-impl</artifactId> <version>2.0.1</version> </dependency>
If you think this Maven repository POM file listing for jsf-impl is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Name:COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) plus GPL
URL: https://glassfish.dev.java.net/public/CDDL+GPL.html.
The following plugins are used in the jsf-impl-2.0.1.jar
The following packages are defined in the jsf-impl-2.0.1.jar
com.sun.faces com.sun.faces.application com.sun.faces.application.annotation com.sun.faces.application.resource com.sun.faces.application.view com.sun.faces.component com.sun.faces.component.behavior com.sun.faces.component.validator com.sun.faces.component.visit com.sun.faces.config com.sun.faces.config.configprovider com.sun.faces.config.processor com.sun.faces.context com.sun.faces.context.flash com.sun.faces.el com.sun.faces.ext.component com.sun.faces.ext.render com.sun.faces.ext.taglib com.sun.faces.ext.validator com.sun.faces.facelets com.sun.faces.facelets.compiler com.sun.faces.facelets.component com.sun.faces.facelets.el com.sun.faces.facelets.impl com.sun.faces.facelets.tag com.sun.faces.facelets.tag.composite com.sun.faces.facelets.tag.jsf com.sun.faces.facelets.tag.jsf.core com.sun.faces.facelets.tag.jsf.html com.sun.faces.facelets.tag.jstl.core com.sun.faces.facelets.tag.jstl.fn com.sun.faces.facelets.tag.ui com.sun.faces.facelets.util com.sun.faces.io com.sun.faces.lifecycle com.sun.faces.mgbean com.sun.faces.renderkit com.sun.faces.renderkit.html_basic com.sun.faces.scripting com.sun.faces.spi com.sun.faces.taglib com.sun.faces.taglib.html_basic com.sun.faces.taglib.jsf_core com.sun.faces.util com.sun.faces.vendor
Here is the content of the POM file.
<?xml version="1.0" encoding="UTF-8"?> <!-- DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. Copyright 1997-2007 Sun Microsystems, Inc. All rights reserved. The contents of this file are subject to the terms of either the GNU General Public License Version 2 only ("GPL") or the Common Development and Distribution License("CDDL") (collectively, the "License"). You may not use this file except in compliance with the License. You can obtain a copy of the License at https://glassfish.dev.java.net/public/CDDL+GPL.html or glassfish/bootstrap/legal/LICENSE.txt. See the License for the specific language governing permissions and limitations under the License. When distributing the software, include this License Header Notice in each file and include the License file at glassfish/bootstrap/legal/LICENSE.txt. Sun designates this particular file as subject to the "Classpath" exception as provided by Sun in the GPL Version 2 section of the License file that accompanied this code. If applicable, add the following below the License Header, with the fields enclosed by brackets [] replaced by your own identifying information: "Portions Copyrighted [year] [name of copyright owner]" Contributor(s): If you wish your version of this file to be governed by only the CDDL or only the GPL Version 2, indicate your decision by adding "[Contributor] elects to include this software in this distribution under the [CDDL or GPL Version 2] license." If you don't indicate a single choice of license, a recipient has the option to distribute your version of this file under either the CDDL, the GPL Version 2 or to extend the choice of license to its licensees as provided above. However, if you add GPL Version 2 code and therefore, elected the GPL Version 2 license, then the option applies only if the new code is made subject to such option by the copyright holder. --> <project> <modelVersion>4.0.0</modelVersion> <groupId>com.sun.faces</groupId> <artifactId>jsf-impl</artifactId> <version>2.0.1</version> <description> Sun's implementation of the JSF 2.0 specification. </description> <url>http://java.sun.com/javaee/javaserverfaces/</url> <distributionManagement> <repository> <uniqueVersion>false</uniqueVersion> <id>java.net-maven2-repository</id> <url>java-net:/maven2-repository/trunk/repository/</url> </repository> </distributionManagement> <build> <defaultGoal>install</defaultGoal> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>1.5</source> <target>1.5</target> <excludes> <exclude>**/*.*</exclude> </excludes> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.1</version> <executions> <execution> <id>attach-sources</id> <phase>verify</phase> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <configuration> <archive> <manifestFile>target/classes/META-INF/MANIFEST.MF</manifestFile> </archive> </configuration> </plugin> </plugins> <extensions> <extension> <groupId>org.jvnet.wagon-svn</groupId> <artifactId>wagon-svn</artifactId> <version>1.8</version> </extension> </extensions> </build> <issueManagement> <system>issueZilla</system> <url> https://javaserverfaces.dev.java.net/servlets/ProjectIssues </url> </issueManagement> <mailingLists> <mailingList> <name>Sun's JavaServer Faces Implementation Dev List</name> <post>dev@javaserverfaces.dev.java.net</post> <archive> https://javaserverfaces.dev.java.net/servlets/SummarizeList?listName=dev </archive> </mailingList> </mailingLists> <contributors> <contributor> <name>Craig McClanahan</name> </contributor> <contributor> <name>Deepak Gothe</name> </contributor> <contributor> <name>Gregory Murray</name> </contributor> <contributor> <name>Justyna Horwat</name> </contributor> <contributor> <name>Jayashri Visvanathan</name> </contributor> <contributor> <name>Jennifer Ball</name> </contributor> <contributor> <name>Jacob Hookom</name> </contributor> <contributor> <name>Raj Premkumar</name> </contributor> <contributor> <name>Stan Silvert</name> </contributor> <contributor> <name>Mike Youngstrom</name> </contributor> <contributor> <name>Jason Lee</name> </contributor> </contributors> <licenses> <license> <name> COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) plus GPL </name> <url>https://glassfish.dev.java.net/public/CDDL+GPL.html</url> <distribution>repo</distribution> </license> </licenses> <organization> <name>Sun Microsystems, Inc</name> <url>http://www.sun.com/</url> </organization> <dependencies> <dependency> <groupId>javax.servlet</groupId> <artifactId>servlet-api</artifactId> <version>2.5</version> <scope>provided</scope> </dependency> <dependency> <groupId>javax.servlet.jsp</groupId> <artifactId>jsp-api</artifactId> <version>2.1</version> <scope>provided</scope> </dependency> <dependency> <groupId>javax.el</groupId> <artifactId>el-api</artifactId> <version>1.0</version> <scope>provided</scope> </dependency> <dependency> <groupId>jstl</groupId> <artifactId>jstl</artifactId> <version>1.2</version> <scope>provided</scope> </dependency> </dependencies> </project>