jakarta.faces-api
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>jakarta.faces</groupId> <artifactId>jakarta.faces-api</artifactId> <version>2.3.2</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- Copyright (c) 2017, 2019 Oracle and/or its affiliates. All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v. 2.0, which is available at http://www.eclipse.org/legal/epl-2.0. This Source Code may also be made available under the following Secondary Licenses when the conditions for such availability set forth in the Eclipse Public License v. 2.0 are satisfied: GNU General Public License, version 2 with the GNU Classpath Exception, which is available at https://www.gnu.org/software/classpath/license.html. SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 --> <!-- Project to create the Jakarta Server Faces API jar and docs (vdldoc, renderkit docs). This depends on a Mojarra build being available in the version set by mojarra.version --> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.eclipse.ee4j</groupId> <artifactId>project</artifactId> <version>1.0.5</version> <relativePath/> </parent> <groupId>jakarta.faces</groupId> <artifactId>jakarta.faces-api</artifactId> <version>2.3.2</version> <name>Jakarta Server Faces</name> <description> Jakarta Server Faces defines an MVC framework for building user interfaces for web applications, including UI components, state management, event handing, input validation, page navigation, and support for internationalization and accessibility. </description> <inceptionYear>1997</inceptionYear> <url>https://github.com/eclipse-ee4j/faces-api</url> <properties> <mojarra.version>2.3.13</mojarra.version> </properties> <licenses> <license> <name>EPL 2.0</name> <url>http://www.eclipse.org/legal/epl-2.0</url> <distribution>repo</distribution> </license> <license> <name>GPL2 w/ CPE</name> <url>https://www.gnu.org/software/classpath/license.html</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <id>atijms</id> <name>Arjan Tijms</name> <email>arjan.tijms@gmail.com</email> <organization>Payara</organization> <roles> <role>Project-Lead</role> <role>comitter</role> <role>developer</role> </roles> <timezone>+1</timezone> </developer> <developer> <id>ren.zhijun.oracle</id> <name>Zhijun Ren</name> <email>ren.zhijun@oracle.com></email> <organization>Oracle America, Inc.</organization> <roles> <role>comitter</role> <role>developer</role> </roles> <timezone>+8</timezone> </developer> </developers> <contributors> <contributor> <name>Jennifer Ball</name> </contributor> <contributor> <name>Deepak Gothe</name> </contributor> <contributor> <name>Jacob Hookom</name> </contributor> <contributor> <name>Justyna Horwat</name> </contributor> <contributor> <name>Roger Kitain</name> </contributor> <contributor> <name>Jason Lee</name> </contributor> <contributor> <name>Craig McClanahan</name> </contributor> <contributor> <name>Gregory Murray</name> </contributor> <contributor> <name>Raj Premkumar</name> </contributor> <contributor> <name>Stan Silvert</name> </contributor> <contributor> <name>Jayashri Visvanathan</name> </contributor> <contributor> <name>Mike Youngstrom</name> </contributor> </contributors> <mailingLists> <mailingList> <name>Jakarta Server Faces Specification Mailing List</name> <post>https://accounts.eclipse.org/mailing-list/faces-dev</post> </mailingList> </mailingLists> <build> <resources> <resource> <directory>src/main/resources</directory> <excludes> <exclude>META-INF/README</exclude> <exclude>${findbugs.exclude}</exclude> </excludes> </resource> <resource> <directory>${project.basedir}/..</directory> <includes> <include>LICENSE.md</include> <include>NOTICE.md</include> </includes> <targetPath>META-INF</targetPath> </resource> <resource> <directory>${project.basedir}</directory> <includes> <include>LICENSE.md</include> <include>NOTICE.md</include> </includes> <targetPath>META-INF</targetPath> </resource> </resources> <plugins> <!-- Restricts the Java version to 1.8 --> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>2.5.1</version> <configuration> <source>1.8</source> <target>1.8</target> <compilerArgument>-Xlint:unchecked</compilerArgument> </configuration> </plugin> <!-- Unpack the sources jar that was build and installed by the Mojarra project. This way we can compile that source again in this project, but for the final artifact jar we only include the javax.* classes then. --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> <version>3.0.2</version> <executions> <execution> <id>unpack</id> <phase>initialize</phase> <goals> <goal>unpack</goal> </goals> </execution> </executions> <configuration> <artifactItems> <artifactItem> <groupId>org.glassfish</groupId> <artifactId>jakarta.faces</artifactId> <version>${mojarra.version}</version> <classifier>sources</classifier> <outputDirectory>src/main/java</outputDirectory> <includes>**/*.java</includes> </artifactItem> <artifactItem> <groupId>org.glassfish</groupId> <artifactId>jakarta.faces</artifactId> <version>${mojarra.version}</version> <classifier>sources</classifier> <outputDirectory>src/main/resources</outputDirectory> <excludes>**/*.java</excludes> </artifactItem> </artifactItems> </configuration> </plugin> <!-- Clean unpacked sources jar --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-antrun-plugin</artifactId> <executions> <execution> <id>clean</id> <phase>clean</phase> <configuration> <target> <delete dir="src/main/java"/> <delete dir="src/main/resources"/> </target> </configuration> <goals> <goal>run</goal> </goals> </execution> </executions> </plugin> <!-- Create VDL docs --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-resources-plugin</artifactId> <version>3.0.2</version> <executions> <execution> <id>Copy-vdldoc-css</id> <phase>test</phase> <goals> <goal>copy-resources</goal> </goals> <configuration> <outputDirectory>${project.build.directory}/vdldoc</outputDirectory> <resources> <resource> <directory>src/main/vdldoc</directory> </resource> </resources> </configuration> </execution> </executions> </plugin> <plugin> <groupId>com.github.matinh.vdldoc</groupId> <artifactId>vdldoc-maven-plugin</artifactId> <version>1.0</version> <executions> <execution> <id>generate-vdldoc</id> <phase>prepare-package</phase> <goals> <goal>vdldoc</goal> </goals> </execution> </executions> <configuration> <srcDirectory>src/main/resources/com/sun/faces/metadata/taglib</srcDirectory> <css>jsf-api.css</css> <browserTitle>Jakarta Server Faces ${project.version} VDL Documentation</browserTitle> <documentTitle>Jakarta Server Faces ${project.version} VDL Documentation</documentTitle> <hideGeneratedBy>true</hideGeneratedBy> <reportOutputDirectory>${project.build.directory}</reportOutputDirectory> </configuration> </plugin> <plugin> <groupId>org.omnifaces</groupId> <artifactId>renderkitdoc-maven-plugin</artifactId> <version>1.0</version> <executions> <execution> <id>generate-renderkitdoc</id> <phase>prepare-package</phase> <goals> <goal>generate</goal> </goals> </execution> </executions> <configuration> <facesConfig>${project.basedir}/src/main/resources/com/sun/faces/standard-html-renderkit.xml</facesConfig> <schemaDirectory>${project.basedir}/src/main/resources</schemaDirectory> </configuration> </plugin> <!-- Create API binary jar For the final artifact jar we only include the javax.* classes and resources that we compiled from the unpackaged implementation source attachment jar. See the maven-dependency-plugin for this unpackaging. This effectively gives us the API jar. --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>3.0.2</version> <configuration> <includes> <include>javax/**</include> <include>META-INF/LICENSE.md</include> <include>META-INF/NOTICE.md</include> </includes> </configuration> </plugin> <!-- Create sources for API jar --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.0.1</version> <executions> <execution> <id>generate-api-sources</id> <goals> <goal>jar</goal> </goals> <configuration> <excludes> <exclude>com/**</exclude> </excludes> </configuration> </execution> </executions> </plugin> <!-- Create Javadoc for API jar --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.1.1</version> <executions> <execution> <id>attach-api-javadocs</id> <goals> <goal>jar</goal> </goals> <configuration> <source>1.8</source> <additionalJOption>-Xdoclint:none</additionalJOption> <description>Jakarta Server Pages API documentation</description> <doctitle>Jakarta Server Pages API documentation</doctitle> <windowtitle>Jakarta Server Pages API documentation</windowtitle> <header><![CDATA[<br>Jakarta Server Pages API v${project.version}]]></header> <bottom><![CDATA[ Comments to: <a href="mailto:faces-dev@eclipse.org">faces-dev@eclipse.org</a>.<br> Copyright © 2019 Eclipse Foundation. All rights reserved.<br> Use is subject to <a href="{@docRoot}/doc-files/speclicense.html" target="_top">license terms</a>.]]> </bottom> <docfilessubdirs>true</docfilessubdirs> <groups> <group> <title>Jakarta Server Faces API Documentation</title> <packages> javax.faces.* </packages> </group> </groups> </configuration> </execution> </executions> </plugin> </plugins> <pluginManagement> <plugins> <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.--> <plugin> <groupId>org.eclipse.m2e</groupId> <artifactId>lifecycle-mapping</artifactId> <version>1.0.0</version> <configuration> <lifecycleMappingMetadata> <pluginExecutions> <pluginExecution> <pluginExecutionFilter> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> <versionRange>[3.0.2,)</versionRange> <goals> <goal>unpack</goal> </goals> </pluginExecutionFilter> <action> <execute> <runOnIncremental>false</runOnIncremental> </execute> </action> </pluginExecution> </pluginExecutions> </lifecycleMappingMetadata> </configuration> </plugin> </plugins> </pluginManagement> </build> <dependencies> <dependency> <groupId>jakarta.servlet</groupId> <artifactId>jakarta.servlet-api</artifactId> <version>4.0.3</version> <scope>provided</scope> </dependency> <dependency> <groupId>jakarta.servlet.jsp</groupId> <artifactId>jakarta.servlet.jsp-api</artifactId> <version>2.3.6</version> <scope>provided</scope> <optional>true</optional> </dependency> <dependency> <groupId>jakarta.servlet.jsp.jstl</groupId> <artifactId>jakarta.servlet.jsp.jstl-api</artifactId> <version>1.2.5</version> <scope>provided</scope> <optional>true</optional> </dependency> <dependency> <groupId>jakarta.websocket</groupId> <artifactId>jakarta.websocket-api</artifactId> <version>1.1.2</version> <scope>provided</scope> </dependency> <dependency> <groupId>jakarta.el</groupId> <artifactId>jakarta.el-api</artifactId> <version>3.0.3</version> <scope>provided</scope> </dependency> <!-- Needs to be updated still --> <dependency> <groupId>javax.enterprise</groupId> <artifactId>cdi-api</artifactId> <version>2.0.SP1</version> <scope>provided</scope> </dependency> <dependency> <groupId>jakarta.validation</groupId> <artifactId>jakarta.validation-api</artifactId> <version>2.0.2</version> <scope>provided</scope> </dependency> <dependency> <groupId>jakarta.json</groupId> <artifactId>jakarta.json-api</artifactId> <version>1.1.6</version> <scope>provided</scope> <optional>true</optional> </dependency> <dependency> <groupId>jakarta.ejb</groupId> <artifactId>jakarta.ejb-api</artifactId> <version>3.2.5</version> <scope>provided</scope> <optional>true</optional> </dependency> <dependency> <groupId>jakarta.xml.bind</groupId> <artifactId>jakarta.xml.bind-api</artifactId> <version>2.3.2</version> <scope>provided</scope> <optional>true</optional> </dependency> <!-- Depend on the source jar of the full implementation Mojarra jar. This is used for unpacking and re-compiling. This jar is created by executing mvn clean install in the [mojarra home]/impl project. --> <dependency> <groupId>org.glassfish</groupId> <artifactId>jakarta.faces</artifactId> <version>${mojarra.version}</version> <scope>provided</scope> <classifier>sources</classifier> </dependency> <!-- For the vendor SPI implementations shipped with Mojarra. Although we don't use them and they don't end up in the API jar, they still need to be compiled --> <!-- Jetty 6 --> <dependency> <groupId>org.mortbay.jetty</groupId> <artifactId>jetty-plus</artifactId> <version>6.1.26</version> <optional>true</optional> </dependency> <dependency> <groupId>org.mortbay.jetty</groupId> <artifactId>jetty-annotations</artifactId> <version>6.1.26</version> <optional>true</optional> </dependency> <!-- Tomcat 6 --> <dependency> <groupId>org.apache.tomcat</groupId> <artifactId>catalina</artifactId> <version>6.0.51</version> <scope>provided</scope> </dependency> </dependencies> <reporting> <plugins> <plugin> <groupId>com.phasebash.jsdoc</groupId> <artifactId>jsdoc3-maven-plugin</artifactId> <version>1.2.0</version> <configuration> <configFile>${project.build.directory}/../src/main/jsdoc/conf.json</configFile> <includePrivate>false</includePrivate> <lenient>true</lenient> <sourceFiles> <sourceFile>src/main/resources/META-INF/resources/javax.faces/jsf-uncompressed.js</sourceFile> </sourceFiles> </configuration> </plugin> </plugins> </reporting> </project>