Maven package error: No compiler is provided in this environment

Maven package error: No compiler is provided in this environment

我是 Maven 的新手,我正在尝试从 HelloWorld 程序中创建一个 JAR。

我已经完成类路径设置:

这是 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/maven-v4_0_0.xsd">
  <modelVersion>4.0.0</modelVersion>
  <groupId>com.demo</groupId>
  <artifactId>custom-project</artifactId>
  <packaging>maven-plugin</packaging>
  <version>1.0</version>
  <name>custom-project Maven Mojo</name>
  <url>http://maven.apache.org</url>
  <dependencies>
    <dependency>
      <groupId>org.apache.maven</groupId>
      <artifactId>maven-plugin-api</artifactId>
      <version>2.0</version>
    </dependency>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>3.8.1</version>
      <scope>test</scope>
    </dependency>
  </dependencies>
</project>

当我触发 mvn package 命令时,出现此错误:

[INFO] -------------------------------------------------------------
[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: 1.700 s
[INFO] Finished at: 2018-04-13T12:25:12+05:30
[INFO] Final Memory: 9M/155M
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.1:compile (default-compile) on project custom-project: Compilation f
ailure
[ERROR] No compiler is provided in this environment. Perhaps you are running on a JRE rather than a JDK?
[ERROR]
[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

JAVA_HOME 已在 classpath 中设置为 C:\Program Files\Java\jdk1.8.0_121\bin。请建议如何解决此问题。

您的 JAVA_HOME 设置为 JRE 而不是 JDKJRE 不包含 Java 编译器,因此将 JAVA_HOME 设置为 JDK 它应该可以工作

你需要告诉 java 什么是 class 到 运行。根据您使用的 maven 插件,方式可能会有所不同。 link 展示了如何在 maven-assembly-plugin

的帮助下完成

您也可以转到您的项目属性 -> 库 -> 添加库 -> JRE 系统库 -> 备用 JRE -> 添加。 然后从系统中选择 JDK 路径并申请。 确保从项目库中删除 JRE。

就我而言,这很有效。