https://github.com/primefaces/primefaces-test
Sample project to provide test cases
https://github.com/primefaces/primefaces-test
Last synced: 2 months ago
JSON representation
Sample project to provide test cases
- Host: GitHub
- URL: https://github.com/primefaces/primefaces-test
- Owner: primefaces
- Created: 2016-12-15T09:34:55.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2025-04-12T12:51:29.000Z (2 months ago)
- Last Synced: 2025-04-12T13:55:38.237Z (2 months ago)
- Language: Java
- Homepage:
- Size: 331 KB
- Stars: 43
- Watchers: 12
- Forks: 194
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README

# PrimeFaces Test
This is a sample maven project that uses Latest PrimeFaces Release version. If you have a PrimeFaces issue, please download or fork this project. Then, you should change these files by yourself so that PrimeFaces Team can see your problem. Finally, you can send a link or attach the project. Please make sure that project is runnable with the command below.
You can execute the sample with mvn jetty:run command and hit http://localhost:8080/ to run the page.
### Jakarta EE10 Version
***PrimeFaces Test is setup to run again Jakarta EE10 profile using Jetty 12. You can also use other versions with the available maven profiles: mojarra40, myfaces40
`mvn clean jetty:run -Pmojarra40`
`mvn clean jetty:run -Pmyfaces40`
### Server Port
***By default the application runs on port 8080 but if you would like to use a different port you can pass `-Djetty.port=5000` like:
`mvn clean jetty:run -Djetty.port=5000`
### JPA Lazy Datatable
***The branch `jpa` contains a PrimeFaces Test setup to run with JPA using the JPA LazyDatatable advanced example.
### Legacy JSF Versions
***The branch `javax` contains a PrimeFaces Test setup to run again Jakarta EE10 profile using Jetty 9. Per default the application uses Mojarra 2.3.x.
You can also use other versions with the available maven profiles: myfaces23, myfaces23next, mojarra23`mvn clean jetty:run -Pmyfaces23`
`mvn clean jetty:run -Pmyfaces23next`
`mvn clean jetty:run -Pmojarra23`
### Visual Studio Code Quickstart
***See the [quickstart guide for running in Visual Studio Code](./vscode-quickstart.md) for more information.