Javafx template
open in Eclipse Che (updated link)
A repository with three variants of a javafx projects, with maven setup for Java 17 and JavaFX 17, and JUnit 5 (Jupiter) and TestFX for testing.
javafx-template
Template for single-module, single-package javafx project.
Trying it out
All projects can be tried out by cd-ing into the corresponding folder and using mvn
:
- compile with
mvn compile
(aftercd javafx-template
of course) - test with
mvn test
(it should fail until you complete the RPN calculator) - run with
mvn javafx:run
(it should open, but not work properly)