码迷,mamicode.com
首页 > 其他好文 > 详细

mvn“No compiler is provided in this environment”报错解决方案

时间:2020-07-15 23:55:39      阅读:85      评论:0      收藏:0      [点我收藏+]

标签:run   使用方法   ips   table   javac   compile   bin   png   https   


整理自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 Files\Java\jdk1.8.0_45\bin\javac.exe</executable>
            </configuration>
        </plugin>
    </plugins>
</build>

mvn“No compiler is provided in this environment”报错解决方案

标签:run   使用方法   ips   table   javac   compile   bin   png   https   

原文地址:https://www.cnblogs.com/tellw/p/13307580.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!