2025 init

This commit is contained in:
Romain Lefeuvre
2025-11-18 14:41:54 +01:00
commit 7b185c9c0c
19 changed files with 417 additions and 0 deletions

View File

@@ -0,0 +1,34 @@
# Use PMD designer
## Download JavaFX
If JavaFX is not installed you can download it [here](https://gluonhq.com/products/javafx/).
Check the current version of your JDK by running ```java --version``` and download the corresponding version ("Minimum JDK" column).
* Java 17 => JavaFX 21
* Java 11 => JavaDX 17
## Set up JavaFX
Before using `designer` you need to specify JavaFX path.
#### Linux/Unix
```shell
$ export JAVAFX_HOME=path/to/javafx-sdk-{version}
```
#### Windows
```shell
$ set JAVAFX_HOME=path\to\javafx-sdk-{version}
```
## Run designer
#### Linux/Unix
```shell
$ run.sh designer
```
#### Windows
```shell
$ pmd.bat designer
```