A minimal Java image created using jlink that includes the javafx.swing module from the JavaFX 11 jmods bundle will fail to run FX / Swing interop applications. For example, an image created as follows will not work:
```
jlink --output myjdk --module-path javafx-jmods-11 \
--add-modules java.desktop,javafx.swing,javafx.controls
```
The javafx.swing module depends on a new jdk.unsupported.desktop module in JDK 11 that must either be explicitly added or included via the `--bind-services` option.
Workaround: create your image using one of the following two methods:
```
jlink --output myjdk --module-path javafx-jmods-11 \
--add-modules java.desktop,javafx.swing,javafx.controls,jdk.unsupported.desktop
jlink --output myjdk --bind-services --module-path javafx-jmods-11 \
--add-modules java.desktop,javafx.swing,javafx.controls
```