I want to ask if there is any method to add JavaFX into Maven Archetype list in Eclipse or any plugin to use Maven to build JavaFX Application.
The only thing I add to my pom.xml in order to build JavaFX Application is this dependency :
com.oracle
javafx
2.2
${java.home}/lib/ext/jfxrt.jar
system
It is simply fetching the javafx jar in my Java8 JRE to add it to the project.
Then I use the maven-assembly-plugin to build the jar with dependencies.
Hope it helps.