Downloads
Primefaces can be downloaded manually or via maven.
Development
| Version | Binary | Source | Bundle |
|---|---|---|---|
| 3.2-SNAPSHOT | primefaces-3.2-SNAPSHOT.jar | primefaces-3.2-SNAPSHOT-sources.jar | NA |
Stable
| Version | Binary | Source | Bundle |
|---|---|---|---|
| 3.1 | primefaces-3.1.jar | primefaces-3.1-sources.jar | primefaces-3.1.zip |
Older
| Version | Binary | Source | Bundle |
|---|---|---|---|
| 3.0.1 | primefaces-3.0.1.jar | primefaces-3.0.1-sources.jar | primefaces-3.0.1.zip |
| 3.0 | primefaces-3.0.jar | primefaces-3.0-sources.jar | primefaces-3.0.zip |
| 2.2.1 | primefaces-2.2.1.jar | primefaces-2.2.1-sources.jar | primefaces-2.2.1.zip |
Mobile
| Version | Binary | Source | Bundle |
|---|---|---|---|
| 0.9.1 | mobile-0.9.1.jar | mobile-0.9.1-sources.jar | mobile-0.9.1.zip |
Downloading with Maven
PrimeFaces distributions are deployed at the PrimeFaces Repository, to let maven aware of this repository, add the following repository definition to your pom.xml in repositories section.
<repository> <id>prime-repo</id> <name>PrimeFaces Maven Repository</name> <url>http://repository.primefaces.org</url> <layout>default</layout> </repository>
And add the dependency configuration as;
<dependency> <groupId>org.primefaces</groupId> <artifactId>primefaces</artifactId> <version>3.1</version> </dependency>
For PrimeFaces Mobile;
<dependency> <groupId>org.primefaces</groupId> <artifactId>mobile</artifactId> <version>0.9.1</version> </dependency>