Maven 包编译错误

2022-09-01 21:39:20

我在eclipse中使用maven创建了一个webapp项目。当我在命令提示符下运行命令mvn包时,它会显示错误。

[ERROR] COMPILATION ERROR :
[INFO] -------------------------------------------------------------
[ERROR] No compiler is provided in this environment. Perhaps you are running on a JRE rather than a JDK?
[INFO] 1 error
[INFO] -------------------------------------------------------------
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 4.310s
[INFO] Finished at: Tue Mar 05 14:32:23 IST 2013
[INFO] Final Memory: 16M/218M
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.0:compile (default-compile) on project  Compilation fa
ilure
[ERROR] ***No compiler is provided in this environment. Perhaps you are running on a JRE rather than a JDK?***
[ERROR] -> [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/MojoFailureException

我试图改变jdk和jre。但不起作用。仍然显示相同的错误


答案 1

Windows 7 - 64位中,存在权限问题,该问题阻止安装程序将文件解压缩到本地。这个jar文件是3.x版本使用的,而不是通常的C:\Program Files\Java\jdk1.6.xx\lib\tools.jarmaven-compiler-pluginjavac

溶液:以管理员身份运行 Java JDK 安装程序!并确保坐在tools.jarC:\Program Files\Java\jdk1.6.xx\lib\

如果您使用的是m2e maven集成插件,您希望通过Eclipse内部的以下步骤查看该文件对Eclipse可见:

  • 转到窗口 -> 首选项 -> Java -> 已安装的 JRE
  • 选择您正在使用的 JDK (C:\Program Files\Java\jdk1.6.xx)
  • 按编辑以查看jar列表,包括工具.jar,OW可以将其添加为添加外部JAR

然后通过以下步骤配置 maven 运行:

  • 运行>运行配置>在名称、基目录和目标中填充。
  • 然后在同一窗口中移动到 JRE 选项卡并指向 JDK \jdk1.6.xx\

答案 2

转到“运行时配置”并将 JRE 配置为 JDK。

Select the right JDK for your Runtime

或者按照@PawanKumarBaranwal建议,设置默认的 JDK。但请注意是否配置了多个 JRE。

Select default JRE


推荐