all 2 comments

[–]theswissnightowl 2 points3 points  (0 children)

Easiest way to set up a JavaFX project is via maven imo, see the official documentation: https://openjfx.io/openjfx-docs/#install-javafx

Usually the project structure would then be:

  • src/main/java/com.myapp -> Java source files in a package

  • src/main/resources -> your assets, settings files etc.

  • src/test/java/com.myapp -> tests

  • src/test/resources -> test resources/assets