maven compile启动报错

Posted 刘百会

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了maven compile启动报错相关的知识,希望对你有一定的参考价值。

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不一样

 

 

解决方案:

修改pom.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>  

以上是关于maven compile启动报错的主要内容,如果未能解决你的问题,请参考以下文章

maven 启动 报错 Fatal error compiling: 无效的目标发行版

在idea中使用maven执行 `compile` 命令编译项目,发现报错:“找不到符号“。

eclipse mave 配置启动报错

用eclipse创建一个maven管理的项目,创建完成后pom.xml报错!!急求怎么解决!!

SpringBoot MAVEN编译报错Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.8.0:(代码片

maven mvn compile 报错是啥原因