无法编译 apache drill 代码

unable to compile apache drill code

我克隆了 drill git 存储库,当我 运行

mvn clean package -DskipTests

我收到这个错误

[ERROR] Failed to execute goal org.apache.maven.plugins:maven-enforcer-plugin:1.3.1:enforce (validate_java_and_maven_version) on project drill-root: Some Enforcer rules have failed. Look above for specific messages explaining why the rule failed. -> [Help 1]

您需要使用 JDK 1.7 来构建 Apache Drill。

Drill 团队将 maven-enforcer-plugin 添加到构建过程中,以确保如果有人尝试使用不受支持的 Java 或 Maven 版本进行构建,构建会给出错误。如果您向上滚动,您将看到一条较早的错误消息,如下所示:

[INFO] --- maven-enforcer-plugin:1.3.1:enforce (validate_java_and_maven_version) @ drill-root ---
[WARNING] Rule 1: org.apache.maven.plugins.enforcer.RequireJavaVersion failed with message:
Detected JDK Version: 1.8.0-51 is not in the allowed range [1.7,1.8).

很多人想 运行 使用 JDK 1.8 进行钻取。在这方面有好消息。虽然您无法使用 JDK 1.8 构建,但构建后,您可以 运行 使用 JDK 1.8就好了