How to avoid adding vm arguments everytime I create a new javafx project?

Viewed 1325

I am creating javafx projects in STS(4.6.1) with e(fx)clipse plugin and scenebuilder.

Everytime I create a new project, I have to add the VM arguments in run configurations:

--module-path "/home/path/to/javafx sdk/lib" --add-modules javafx.controls,javafx.fxml

otherwise the program ends with the error message which says

Error: Could not find or load main class application.Main
Caused by: java.lang.NoClassDefFoundError: javafx/application/Application

I have to do this for every javafx project which is irritating.

Is there a way to add this once and for all?

Thanks

1 Answers
Related