KO
|
EN
gitlite — search
Search
#python
#java
#swift
#golang
#nodejs
#android
#game
#react
#machine-learning
#tensorflow
#javascript
#json
JRebirth
★ 92
Open GitHub ↗
JRebirth is a JavaFX Application Framework
Download README (.md)
Explore Similar Repositories
jquery.multisortable
:
Extends jQueryUI sortable to allow selection and sorting of multiple elements
redis-timeline
:
Redis-backed timeline for activity feeds
pubby
:
A Linked Data frontend for SPARQL endpoints
3bmd
:
markdown processor in CL using esrap parser
OOMAO
:
Object-Oriented, Matlab & Adaptive Optics
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
JRebirth
?
Download (.md)
JRebirth ======== 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](http://www.jrebirth.org) Live feed is available on our [Blog](http://blog.jrebirth.org) [](https://gitter.im/JRebirth/JRebirth?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) ## Download & Build [](https://central.sonatype.com/artifact/org.jrebirth.af/core) [](http://ci.jrebirth.org/job/JRebirth-8x/) ## Demo Several Demos are available online : - Apps - [Showcase Demo](http://www.jrebirth.org/apps/Demo.html) - [Mastering Tables Game](http://www.jrebirth.org/apps/MasteringTables.html) - [Analyzer App](http://www.jrebirth.org/apps/Analyzer.html) - Presentations - [EclipseDay Prez](http://www.jrebirth.org/apps/EclipseDay.html) - [Breizhcamp Prez](http://www.jrebirth.org/apps/Breizhcamp.html) - [LightningTalk](http://www.jrebirth.org/apps/LightningTalk.html) - [EclipseCON](http://www.jrebirth.org/apps/EclipseCON.html) - [JRebirth Tour](http://www.jrebirth.org/apps/JRebirthTour.html) ## Use it 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](https://central.sonatype.com/search?q=org.jrebirth.af)): <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 Documentation is available [here](http://www.jrebirth.org/doc/Toc.html). ## Build it Requires [Git](http://git-scm.com/), **JDK 25** or newer, [Apache Maven](http://maven.apache.org/) **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