Skip to content

mbayerlein/primefaces

 
 

Repository files navigation

Maven Actions Status CI Actions Status Integration Tests Sonar License: MIT Discord Chat Stackoverflow Prime Discussions Gurubase

PrimeFaces Hero

PrimeFaces

This is an overview page, please visit PrimeFaces.org for more information.

PrimeFaces Logo

Overview


PrimeFaces is one of the most popular UI libraries in Java EE Ecosystem and widely used by software companies, world renowned brands, banks, financial institutions, insurance companies, universities and more. Here are some of the users who notified us or subscribed to a PrimeFaces Support Service.

Community <> LTS <> Pro


This is the open source code and issue tracker of the PrimeFaces master (a.k.a. community version).
Please check the following link for informations about Long Term Support (LTS) and PRO

What does that mean?

  • PrimeFaces is developed by PrimeTek and the open source community.
  • The most contributors here on GitHub are working on PrimeFaces in their spare time.
  • PrimeTek pushes fixes and new features from their closed source LTS and Pro repositories to the community edition.
  • We, the community on GitHub, only provide support for issues, which are reproducible with the current major release or SNAPSHOT.
  • We are NOT able to port bugfixes to elite releases. This is up to PrimeTek and can e.g. be triggered with PrimeFaces PRO.

Versions


Version Status JSF version Java version Documentation Showcase
unreleased unreleased JSF40 - JSF40 Java HTML HTTPS
15.0.x STS JSF23 - JSF40 Java HTML HTTPS
14.0.x LTS JSF23 - JSF40 Java HTML HTTPS
13.0.x LTS JSF20 - JSF40 Java HTML
Archive
Version Status JSF version Java version Documentation
12.0.x LTS JSF20 - JSF40 Java HTML
11.0.x LTS JSF20 - JSF40 Java HTML
10.0.x LTS JSF20 - JSF30 Java HTML
8.0 LTS JSF20 - JSF23 Java HTML
7.0 LTS JSF20 - JSF23 Java HTML
6.2 Legacy JSF20 - JSF23 Java PDF
6.1 Legacy JSF20 - JSF23 Java PDF
6.0 Legacy JSF20 - JSF23 Java PDF
5.3 Legacy JSF20 - JSF22 Java PDF
5.2 Legacy JSF20 - JSF22 Java PDF
5.1 Legacy JSF20 - JSF22 Java PDF

Maven


Release
<!-- Java EE / javax.* / JSF 2.3 -->
<dependency>
    <groupId>org.primefaces</groupId>
    <artifactId>primefaces</artifactId>
    <version>15.0.5</version>
</dependency>

<!-- Jakarta EE / jakarta.* / Faces 4.0+  -->	
<dependency>
    <groupId>org.primefaces</groupId>
    <artifactId>primefaces</artifactId>
    <version>15.0.5</version>
    <classifier>jakarta</classifier>
</dependency>
SNAPSHOT
<!-- Jakarta EE / jakarta.* / Faces 4.0+  -->
<dependency>
    <groupId>org.primefaces</groupId>
    <artifactId>primefaces</artifactId>
    <version>16.0.0-SNAPSHOT</version>
</dependency>

<repositories>
  <repository>
    <id>sonatype-snapshots</id>
    <name>Sonatype Snapshot Repository</name>
    <url>https://oss.sonatype.org/content/repositories/snapshots</url>
    <releases>
        <enabled>false</enabled>
    </releases>
    <snapshots>
        <enabled>true</enabled>
    </snapshots>
  </repository>
</repositories>

Manual Download


PrimeFaces JAR can be downloaded manually via the Maven Repository.

Tag Library


The VDL documentation for the PrimeFaces tag library can be found here: https://primefaces.github.io/primefaces/vdldoc/

Usage


<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml"
	xmlns:h="jakarta.faces.html"
	xmlns:f="jakarta.faces.core"
	xmlns:pt="jakarta.faces.passthrough"
	xmlns:jsf="jakarta.faces"
	xmlns:ui="jakarta.faces.facelets"
	xmlns:p="primefaces">

	<h:head>

	</h:head>

	<h:body>

		<p:spinner />

	</h:body>
</html>

Demo


Please refer to the showcase in order to see the full usage of the components. Sources of PrimeFaces showcase are available within module primefaces-showcase.

You can also download the PrimeFaces Showcase WAR via the Maven Repository. This is the version for plain Servlet containers like Tomcat.

Contribution


Visit the contribution page for detailed information.

Release Instructions


  • Run mvn versions:set -DgenerateBackupPoms=false -DnewVersion=15.0.5 to update all modules versions
  • Commit and push the changes to GitHub
  • In GitHub create a new Release titled 15.0.5 to tag this release
  • Run mvn clean deploy -Prelease to push to Maven Central
  • Rename Milestone in GitHub Issues and close it
  • Create a new Milestone

License


Licensed under the MIT License.

About

Ultimate Component Suite for JavaServer Faces

Resources

License

Code of conduct

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Java 59.8%
  • JavaScript 16.5%
  • HTML 11.6%
  • TypeScript 6.1%
  • SCSS 4.7%
  • CSS 1.3%