javafx maven集成遇到的问题解决

javafx maven集成采用javafx-maven-plugin,

主要分为几个目标:

jfx:jar

jfx:web

jfx:native

jfx:fix-classpath

jfx:generate-key-store

jfx:run

但是在

mvn clean jfx:run

时遇到了问题:

[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/PluginContainerException

解决方法:


    
        
            com.zenjava
            javafx-maven-plugin
            2.0
            
                net.jalbright.scratch.App
            
            
                
                    org.twdata.maven
                    mojo-executor
                    2.1.0
                
            
        
    



maven jre版本问题:

在settings.xml中添加:
  
  	      jdk-1.8
  	                  
  	                  	
  	                  		1.8
  	                  		true  
  	                  	
  	                  	  
  	                  	    1.8  
  	                  	    1.8  
  	                  	    1.8  
  	                  	  


参考:http://www.zenjava.com/2013/05/26/javafx-maven-plugin-2-0-alpha-feedback-needed/

http://zenjava.com/javafx/maven/index.html

http://stackoverflow.com/questions/19407959/javafx-maven-plugin-and-api-incompatibility


你可能感兴趣的:(JavaFX)