已安装Eclipse 2020-06,但未在File-> New Section

时间:2020-07-21 16:57:18

标签: java eclipse maven

我已经安装了Eclipe 2020-06,但是在File-> New下找不到Maven Project选项。因此,我尝试通过File-> New-> Project创建一个Maven项目。

然后我收到2条警告:

  1. 构建路径指定执行环境J2SE-1.5。工作空间中未安装JRE 严格与此环境兼容。new-project构建路径JRE系统 图书馆问题

  2. 指定的编译器兼容性为1.5,但使用的是JRE 1.8 new-project编译器 合规性JRE编译器合规性问题

pom.xml的内容作为图像附加。它不包含应包含的内部版本或属性或依赖项块。

pom.xml and the warning is shown in the image

我在Windows 7中拥有JDK 1.8和JRE 1.8。

如何解决该问题?我应该安装其他版本的Eclipse吗?

1 个答案:

答案 0 :(得分:1)

Eclipse没有任何问题。

您只需要添加

  <properties>
    <maven.compiler.source>1.8</maven.compiler.source>
    <maven.compiler.target>1.8</maven.compiler.target>
  </properties>

到您的pom.xml

另请参阅:

https://maven.apache.org/plugins/maven-compiler-plugin/examples/set-compiler-source-and-target.html