maven 啟動 報錯 Fatal error compiling: 無效的目標發行版


http://news.tuxi.com.cn/news/119999990123162/31622105.html

http://lyking2001.iteye.com/blog/837440

針對Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.1的解決方案

http://blog.csdn.net/u011734144/article/details/51894942

********************************************************************

 ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.3:compile (default-compile) on project nutzbook: Fatal error compiling: 無效的目標發行版: 1.8 -> [Help 1]

[ERROR]

[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.

[ERROR] Re-run Maven using the -X switch to enable full debug logging.

[ERROR]

[ERROR] For more information about the errors and possible solutions, please read the following articles:

[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoExecutionException Fatal error compiling: 無效的目 標發行版 jdk環境和mvn配置的jdk不一樣

************************************

方式1、修改maven全局jdk

    

    修改 安裝目錄\maven2\conf\settings.xml

 

Xml代碼   收藏代碼
  1. <profiles>     
  2.       <profile>       
  3.            <id>jdk-1.6</id>       
  4.            <activation>       
  5.                <activeByDefault>true</activeByDefault>       
  6.                <jdk>1.6</jdk>       
  7.            </activation>       
  8.            <properties>       
  9.                <maven.compiler.source>1.6</maven.compiler.source>       
  10.                <maven.compiler.target>1.6</maven.compiler.target>       
  11.                <maven.compiler.compilerVersion>1.6</maven.compiler.compilerVersion>       
  12.            </properties>       
  13.    </profile>      
  14. </profiles>    

 

 

方式2、修改項目pom.xml

Xml代碼   收藏代碼
    1. <build>  
    2.     <plugins>  
    3.         <plugin>  
    4.             <groupId>org.apache.maven.plugins</groupId>  
    5.             <artifactId>maven-compiler-plugin</artifactId>  
    6.             <version>2.0.2</version>  
    7.             <configuration>  
    8.                 <source>1.6</source>  
    9.                 <target>1.6</target>  
    10.             </configuration>  
    11.         </plugin>  
    12.     </plugins>  
    13. </build


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM