GithubHelp home page GithubHelp logo

dasister / primefaces Goto Github PK

View Code? Open in Web Editor NEW

This project forked from primefaces/primefaces

0.0 1.0 0.0 80.86 MB

Ultimate Component Suite for JavaServer Faces

Home Page: http://www.primefaces.org

License: MIT License

Java 46.14% CSS 13.40% JavaScript 31.62% HTML 8.59% SCSS 0.26%

primefaces's Introduction

Maven Actions Status CI Actions Status Integration Tests Sonar License: MIT Discord Chat Stackoverflow

PrimeFaces Hero

PrimeFaces

This is an overview page, please visit PrimeFaces.org for more information.

PrimeFaces Logo

Overview


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.

Getting Started


PrimeFaces can be downloaded manually or via maven.

Latest Downloads
Version Binary Source JSF version Java version Documentation
11.0.0-RC2 primefaces-11.0.0-RC2.jar primefaces-11.0.0-RC2-sources.jar 2.0 - 3.0 1.8 - ? 11.0.0 Documentation
10.0.0 primefaces-10.0.0.jar primefaces-10.0.0-sources.jar 2.0 - 3.0 1.8 - ? 10.0.0 Documentation
8.0 primefaces-8.0.jar primefaces-8.0-sources.jar 2.0 - 2.3 1.8 - ? 8.0 Documentation
7.0 primefaces-7.0.jar primefaces-7.0-sources.jar 2.0 - 2.3 1.7 - ? 7.0 Documentation
6.2 primefaces-6.2.jar primefaces-6.2-sources.jar 2.0 - 2.3 1.6 - ? 6.2 Documentation
6.1 primefaces-6.1.jar primefaces-6.1-sources.jar 2.0 - 2.3 1.5 - ? 6.1 Documentation
6.0 primefaces-6.0.jar primefaces-6.0-sources.jar 2.0 - 2.2 1.5 - ? 6.0 Documentation
5.3 primefaces-5.3.jar primefaces-5.3-sources.jar 2.0 - 2.2 1.5 - ? 5.3 Documentation
5.2 primefaces-5.2.jar primefaces-5.2-sources.jar 2.0 - 2.2 1.5 - ? 5.2 Documentation
5.1 primefaces-5.1.jar primefaces-5.1-sources.jar 2.0 - 2.2 1.5 - ? 5.1 Documentation

For a full list of the available downloads, please visit the download page.

Maven
  • Official release (javax; JSF 2.0 - JSF 2.3)

    <dependency>
        <groupId>org.primefaces</groupId>
        <artifactId>primefaces</artifactId>
        <version>11.0.0-RC2</version>
    </dependency>
  • Official release (jakarta; JSF 3.0)

    <dependency>
        <groupId>org.primefaces</groupId>
        <artifactId>primefaces</artifactId>
        <version>11.0.0-RC2</version>
        <classifier>jakarta</classifier>
    </dependency>
  • Snapshot (javax; JSF 2.0 - JSF 2.3; should NOT be used in production environments!)

    <dependency>
        <groupId>com.github.primefaces</groupId>
        <artifactId>primefaces</artifactId>
        <version>master-SNAPSHOT</version>
    </dependency>
    
    <repositories>
        <repository>
            <id>jitpack.io</id>
            <url>https://jitpack.io</url>
        </repository>
    </repositories>
  • Snapshot (jakarta; JSF 3.0; should NOT be used in production environments!)

    <dependency>
        <groupId>com.github.primefaces</groupId>
        <artifactId>primefaces</artifactId>
        <version>master-SNAPSHOT</version>
        <classifier>jakarta</classifier>
    </dependency>
    
    <repositories>
        <repository>
            <id>jitpack.io</id>
            <url>https://jitpack.io</url>
        </repository>
    </repositories>

Usage


Namespaces

The PrimeFaces namespace is necessary to add PrimeFaces components to your pages.

xmlns:p="http://primefaces.org/ui"
Test Run
<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>

Demo


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.

Documentation


A User Guide is available here.

Contribution


Visit the Contribution Wiki page for detailed information.

Release Instructions


  • Run mvn versions:set -DgenerateBackupPoms=false -DnewVersion=11.0.0 to update all modules versions
  • Commit and push the changes to GitHub
  • In GitHub create a new Release titled 11.0.0 to tag this release
  • Run mvn clean deploy -Pminify,release to push to Maven Central
  • Rename Milestone in GitHub Issues and close it
  • Create a new Milestone

License


Licensed under the MIT License.

primefaces's People

Contributors

cagataycivici avatar tandraschko avatar mertsincan avatar melloware avatar rapster avatar christophs78 avatar cnsgithub avatar jepsar avatar jfarcand avatar dependabot[bot] avatar fanste avatar obreidenbach avatar buunsal avatar ravihariharan avatar blutorange avatar hatspencer avatar jasonex7 avatar sudheerj avatar wsaca avatar firsthour avatar stiemannkj1 avatar doleron avatar wal-jan avatar nicolaisotta avatar erickdeoliveiraleal avatar rdebusscher avatar matinh avatar msgeissler avatar onursenture avatar fbrissi avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.