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.sytolk:primefaces:'
}
dependencies {
implementation("com.github.sytolk:primefaces:")
}
<dependency>
<groupId>com.github.sytolk</groupId>
<artifactId>primefaces</artifactId>
<version></version>
</dependency>
libraryDependencies += "com.github.sytolk" % "primefaces" % ""
:dependencies [[com.github.sytolk/primefaces ""]]
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.
PrimeFaces can be downloaded manually or via maven.
Version | Binary | Source ------------ | ------------- | ------------- 6.0| primefaces-6.0.jar | primefaces-6.0-sources.jar 5.3| primefaces-5.3.jar | primefaces-5.3-sources.jar 5.2| primefaces-5.2.jar | primefaces-5.2-sources.jar 5.1| primefaces-5.1.jar | primefaces-5.1-sources.jar
For a full list of the available downloads, please visit the download page.
<dependency>
<groupId>org.primefaces</groupId>
<artifactId>primefaces</artifactId>
<version>6.0</version>
</dependency>
PrimeFaces namespace is necessary to add PrimeFaces components to your pages.
xmlns:p="http://primefaces.org/ui"
For PrimeFaces Mobile, the namespace would be:
xmlns:pm="http://primefaces.org/mobile"
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:p="http://primefaces.org/ui">
<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 is available as separate project.
User Guide is available at documentation page along with other additional resoures.
Visit Contribution Wiki page for the detailed information.
Licensed under the Apache License, Version 2.0 (the "License") http://www.apache.org/licenses/LICENSE-2.0