当我尝试构建我的项目时,我收到以下错误:
BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 45.435s
[INFO] Finished at: Wed Jun 13 17:25:47 GMT+05:30 2012
[INFO] Final Memory: 10M/76M
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:2.0.2:compile (default-compile) on project DPCommons: Compilation failure: Compilation failure:
C:\MyEclipseWorkspace\Workspace_MayMU24\DPCommons\src\com\afunds\lang\ResourceClassLoader.java:[13,15] sun.misc.Resource is Sun proprietary API and may be removed in a future release
,项目名称将显示在下方。
我怎样才能克服这一点。
答案 0 :(得分:1)
执行以下步骤来解决该问题:
窗口 - >偏好 - > Java - >已安装的JRE - >我有一个JRE 在JDK位置,我的位置看起来像C:\ Program 文件\爪哇\ jdk1.6.0_26
窗口 - >偏好 - > Java - >已安装的JRE - >执行 环境 - >选择JavaSE-1.6并选择兼容的JRE 应该是上一步中设置的那个。
请看这个链接 -
Maven in Eclipse complains that "Unable to locate the Javac Compiler" whenever POM changed
答案 1 :(得分:0)
根据this discussion,您似乎有一个JDK版本存在此问题。升级并重试。
答案 2 :(得分:0)
通过在我的项目的pom.xml中提供以下参数解决了这个问题。
<compilerArguments>
<bootclasspath>${java.home}\lib\rt.jar</bootclasspath>
</compilerArguments>
但仍然不清楚为什么会这样?