JavaFX Application with Maven in Eclipse
问题 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. 回答1: There is the javafx-maven-plugin which is available for maven. When developing with Java 8 you just put that plugin as some build-plugin, without further dependencies. <plugin> <groupId>com.zenjava</groupId> <artifactId>javafx-maven-plugin</artifactId> <version>8.8.3</version> <configuration> <mainClass>your.main.class.which.extends.javafx