JRebirth Application Framework for JavaFX graphical toolkit
A set of Showcase Applications are provided for code-centric documentation and they are used as integration test
More information is available on our website : www.jrebirth.org
Live feed is available on our Blog
Several Demos are available online :
- Apps
- Presentations
This repository targets Java 25, JavaFX 26, and JRebirth AF 12.0.0-SNAPSHOT (see org.jrebirth.af/pom.xml).
Latest release on Maven Central is 8.6.0 (artifact search):
<dependency>
<groupId>org.jrebirth.af</groupId>
<artifactId>core</artifactId>
<version>8.6.0</version>
</dependency>
To depend on this 12.x line, build and install from source (mvn clean install), then use:
<dependency>
<groupId>org.jrebirth.af</groupId>
<artifactId>core</artifactId>
<version>12.0.0-SNAPSHOT</version>
</dependency>
Documentation is available here.
Requires Git, JDK 25 or newer, Apache Maven 3.9+ (the build is validated against Maven 3.9.11).
git clone https://github.com/JRebirth/JRebirth.git
cd JRebirth/org.jrebirth.af
mvn clean install
To skip test compilation and execution for the full reactor (for example if a tooling module fails test compile), use:
mvn clean install -Dmaven.test.skip=true