gpt4 book ai didi

java - 如何修复错误 "reading .m2\repository\junit\junit\4.8.2\junit-4.8.2.jar"并使用 Java 6 进行编译?

转载 作者:行者123 更新时间:2023-12-02 05:23:51 24 4
gpt4 key购买 nike

我尝试按照本指南( https://github.com/CaptainObvious0/NoCheatPlus/wiki/Compiling-NoCheatPlus )进行操作,但遇到了 3 个错误,其中两个错误是我没有使用 Java 6 进行编译,另一个错误似乎与 Maven 有关。下面是错误日志,并再次使用“-e”。如果您能提供任何帮助,我将不胜感激。

pastebin.com/z1hPJ47J

最佳答案

这里实际上有两个问题。这是 Maven 错误:

[ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:2.5.1:compile (default-compile) on project ncpbuildbase: Compilation failure: Compilation failure: [ERROR] error: error reading C:\Users\Mark.m2\repository\junit\junit\4.8.2\junit-4.8.2.jar; zip END header not found [ERROR] error: Source option 6 is no longer supported. Use 7 or later. [ERROR] error: Target option 6 is no longer supported. Use 7 or later.

导致此错误的另一个问题是在 pom 文件中:

        <plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.5.1</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>

源目标版本是1.6。您需要将其更改为 1.7 并重新编译。这不会带来任何新问题。

关于java - 如何修复错误 "reading .m2\repository\junit\junit\4.8.2\junit-4.8.2.jar"并使用 Java 6 进行编译?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56245125/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com