https://github.com/TheCrabe/TowerDefense
A Java projet using JavaFX client done with 2 teammates from Epitech (see credits in ReadME) in 2 weeks. The purpose of this repository is to clean the code
https://github.com/TheCrabe/TowerDefense
java javafx tower-defense
Last synced: about 2 months ago
JSON representation
A Java projet using JavaFX client done with 2 teammates from Epitech (see credits in ReadME) in 2 weeks. The purpose of this repository is to clean the code
- Host: GitHub
- URL: https://github.com/TheCrabe/TowerDefense
- Owner: TheCrabe
- Created: 2023-11-20T22:25:42.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-11-20T22:34:39.000Z (over 1 year ago)
- Last Synced: 2024-10-23T20:14:46.930Z (6 months ago)
- Topics: java, javafx, tower-defense
- Language: Java
- Homepage:
- Size: 8.72 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Sample JavaFX Gradle Application [](https://confluence.jetbrains.com/display/ALL/JetBrains+on+GitHub)
A simple JavaFX application based off the [OpenJFX getting started documentation](https://openjfx.io/openjfx-docs/) that uses Gradle as the build system.
The project was created using the standard IntelliJ IDEA project wizard for creating Gradle projects.
This is a modular application, i.e. it uses Java Modules (Java 9 modularity / Jigsaw). There's a bit of finessing to do on the Gradle side to support this, specifically I can't use the [JavaFX Gradle plugin](https://github.com/openjfx/javafx-gradle-plugin) as there's a [known issue using this with a version of Gradle higher than 6.5](https://github.com/openjfx/javafx-gradle-plugin/issues/89) (this project uses Gradle 6.8). I combined the workaround detailed in that ticket with [this StackOverflow answer](https://stackoverflow.com/a/65209664/653519) to create a Gradle build file that works with JavaFX, Java 15 and modules.
It might be easier with Gradle projects to not use modularity, but if we do then the application runs exactly as you'd expect from the command line:
./gradlew clean run
and by running the application class itself in IntelliJ IDEA. It also works as expected from the Gradle tool window.
This seems to be the best approach to take to get a JavaFX application working with Gradle and IntelliJ IDEA.