Step 1. Add the JitPack repository to your build file
Add it in your root settings.gradle at the end of repositories:
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
mavenCentral()
maven { url 'https://jitpack.io' }
}
}
Add it in your settings.gradle.kts at the end of repositories:
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
mavenCentral()
maven { url = uri("https://jitpack.io") }
}
}
Add to pom.xml
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
Add it in your build.sbt at the end of resolvers:
resolvers += "jitpack" at "https://jitpack.io"
Add it in your project.clj at the end of repositories:
:repositories [["jitpack" "https://jitpack.io"]]
Step 2. Add the dependency
dependencies {
implementation 'com.github.primefaces:primefaces:14.0.10'
}
dependencies {
implementation("com.github.primefaces:primefaces:14.0.10")
}
<dependency>
<groupId>com.github.primefaces</groupId>
<artifactId>primefaces</artifactId>
<version>14.0.10</version>
</dependency>
libraryDependencies += "com.github.primefaces" % "primefaces" % "14.0.10"
:dependencies [[com.github.primefaces/primefaces "14.0.10"]]
This is an overview page, please visit PrimeFaces.org for more information.
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.
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?
Version | JSF version | Java version | Binary | Source | Docs | Showcase Binary
------------ | ------------- | ------------- | ------------- | ------------- | ------------- | ------------- |
|
-
|
| JAR | Sources | Docs | WAR
|
-
|
| JAR | Sources | Docs | WAR
|
-
|
| JAR | Sources | Docs | WAR
Version | JSF version | Java version | Binary | Source | Docs
------------ | ------------- | ------------- | ------------- | ------------- | ------------- |
|
-
|
| JAR | Sources | Documentation | WAR
11.0.0| 2.0 - 4.0 | 8 - ? | primefaces-11.0.0.jar | primefaces-11.0.0-sources.jar | 11.0.0 Documentation
10.0.0| 2.0 - 3.0 | 8 - ? | primefaces-10.0.0.jar | primefaces-10.0.0-sources.jar | 10.0.0 Documentation
8.0| 2.0 - 2.3 | 8 - ? | primefaces-8.0.jar | primefaces-8.0-sources.jar | 8.0 Documentation
7.0| 2.0 - 2.3 | 7 - ? | primefaces-7.0.jar | primefaces-7.0-sources.jar | 7.0 Documentation
6.2| 2.0 - 2.3 | 6 - ? | primefaces-6.2.jar | primefaces-6.2-sources.jar | 6.2 Documentation
6.1| 2.0 - 2.3 | 5 - ? | primefaces-6.1.jar | primefaces-6.1-sources.jar | 6.1 Documentation
6.0| 2.0 - 2.2 | 5 - ? | primefaces-6.0.jar | primefaces-6.0-sources.jar | 6.0 Documentation
5.3| 2.0 - 2.2 | 5 - ? | primefaces-5.3.jar | primefaces-5.3-sources.jar | 5.3 Documentation
5.2| 2.0 - 2.2 | 5 - ? | primefaces-5.2.jar | primefaces-5.2-sources.jar | 5.2 Documentation
5.1| 2.0 - 2.2 | 5 - ? | primefaces-5.1.jar | primefaces-5.1-sources.jar | 5.1 Documentation
<!-- Java EE / javax.* / JSF 2.3 -->
<dependency>
<groupId>org.primefaces</groupId>
<artifactId>primefaces</artifactId>
<version>15.0.4</version>
</dependency>
<!-- Jakarta EE / jakarta.* / Faces 4.0+ -->
<dependency>
<groupId>org.primefaces</groupId>
<artifactId>primefaces</artifactId>
<version>15.0.4</version>
<classifier>jakarta</classifier>
</dependency>
<!-- 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>
The VDL documentation for the PrimeFaces tag library can be found here: https://primefaces.github.io/primefaces/vdldoc/
<!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>
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.
Visit the contribution page for detailed information.
mvn versions:set -DgenerateBackupPoms=false -DnewVersion=15.0.4
to update all modules versions15.0.4
to tag this releasemvn clean deploy -Prelease
to push to Maven CentralLicensed under the MIT License.