mvn“No compiler is provided in this environment”报错解决方案
Posted tellw
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mvn“No compiler is provided in this environment”报错解决方案相关的知识,希望对你有一定的参考价值。
整理自No compiler is provided in this environment. Perhaps you are running on a JRE rather than a JDK?
我没用Eclipse,故说明以下两种方法,其中,使用方法一后问题已解决。
方法一:设置环境变量JAVA_HOME的值
如图所示
方法二:更新pom.xml文件的值
设置fork为true且说明JDK的路径
<build>
...
<plugins>
...
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<fork>true</fork>
<executable>C:Program FilesJavajdk1.8.0_45injavac.exe</executable>
</configuration>
</plugin>
</plugins>
</build>
以上是关于mvn“No compiler is provided in this environment”报错解决方案的主要内容,如果未能解决你的问题,请参考以下文章
Apache Maven IDEA Plugin Usage(mvn idea:idea/mvn idea:clean/mvn idea:project)
“mvn clean install”与“mvn install”有何不同?