Downloads
Primefaces can be downloaded manually or via maven.
Latest and Greatest
| Version | Binary | Source | Bundle |
|---|---|---|---|
| 3.2 | primefaces-3.2.jar | primefaces-3.2-sources.jar | primefaces-3.2.zip |
Older
Mobile
| Version | Binary | Source | Bundle |
|---|---|---|---|
| 0.9.2 | primefaces-mobile-0.9.2.jar | primefaces-mobile-0.9.2-sources.jar | primefaces-mobile-0.9.2.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.2</version> </dependency>
For PrimeFaces Mobile;
<dependency> <groupId>org.primefaces</groupId> <artifactId>primefaces-mobile</artifactId> <version>0.9.2</version> </dependency>