1

我的 Maven 项目没有看到编译器——它是 Eclipse 上的 JavaSE-1.8。编译器在 Eclipse 的其他任何地方都运行良好。

我不断收到的错误是:

[ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.1:compile (default-compile) on project DNM: Compilation failure

[ERROR] No compiler is provided in this environment. Perhaps you are running on a JRE rather than a JDK?

pom.xml的如下:

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  <modelVersion>4.0.0</modelVersion>

  <groupId>AxyMVN</groupId>
  <artifactId>DNM</artifactId>
  <version>0.0.1-SNAPSHOT</version>
  <packaging>jar</packaging>

  <name>DNM</name>
  <url>http://maven.apache.org</url>

  <properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  </properties>

<build>
    <pluginManagement>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>3.1</version>
                <configuration>
                    <source>1.8</source>
                    <target>1.8</target>
                </configuration>
            </plugin>
        </plugins>
    </pluginManagement>
</build>

  <dependencies>
    <dependency>
        <groupId>junit</groupId>
        <artifactId>junit</artifactId>
        <version>3.8.1</version>
        <scope>test</scope>
    </dependency>
  </dependencies>
</project>

项目上编译器的配置似乎很好:

  • 在 Project Explorer 窗口中,JRE System Library在项目上显示它设置为JavaSE-1.8.

  • 项目的Java Compiler属性设置为Use compliance from execution environment 'JavaSE-1.8' on the Java Build Path.

  • Run Configurations项目的窗口中,打开的那个Right-click > Run as > Run configurationsJRE选项卡显示它设置为Workspace default JRE (jre1.8.0_20)

将以下内容添加到<properties>标签中pom.xml并没有改变任何东西。

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

Maven > Update Project每次尝试配置时我都没有跳过。

该项目在其他任何地方都没有显示任何其他错误。

我错过了什么?

注意:我看到Maven “构建路径指定执行环境 J2SE-1.5”,尽管我在其他一些讨论中将其更改为 1.7。

4

2 回答 2

1

它实际上是在对您说“也许您在 JRE 而不是 JDK 上运行?”,这意味着 - 不要在 jre 上运行,而是在 jdk 上运行。下载jdk版本并配置好,祝你好运

于 2015-07-18T18:38:10.130 回答
0

Window → Preferences → Java → Installed JREs.解决它。它被设置为 JRE——将它设置为 JDK——我JAVA_HOME正在展示的那个。

Eclipse/Maven 错误:“此环境中未提供编译器”对此有所帮助。

于 2015-07-18T18:43:40.927 回答