I have used the Quickstart JavaFX archetype from the JavaFX Maven Plugin to create a Maven JavaFX project.
When running this project from the command line with "mvn jfx:run" everything works fine, but when I try to run it from IntelliJ (12.1.6) by creating a run configuration with "jfx:run" in the command line I get an UnsatisifedLinkError:
java.lang.UnsatisfiedLinkError: com.sun.glass.ui.win.WinApplication._submitForLaterInvocation(Ljava/lang/Runnable;)V
at com.sun.glass.ui.win.WinApplication._submitForLaterInvocation(Native Method)
at com.sun.glass.ui.win.WinApplication.submitForLaterInvocation(WinApplication.java:215)
at com.sun.glass.ui.InvokeLaterDispatcher.run(InvokeLaterDispatcher.java:101)
Any advice for how to fix this?