Netbeans Maven 错误: javac: 无效的目标版本: 1.7

2022-09-04 08:21:21

我正在尝试在最新 netbeans 的全新安装上构建一个现有的 maven 项目,但是我遇到了以下错误,非常感谢任何帮助:

Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:2.3.2:compile (default-compile) on project com.rory.ngp.test: Compilation failure
Failure executing javac, but could not parse the error:
javac: invalid target release: 1.7

我认为这与路径有关,但不确定。这是我的内容/usr/lib/jvm directory;

bash-4.1$ pwd
/usr/lib/jvm
bash-4.1$ ls   
java                               java-openjdk   jre-1.6.0-openjdk.x86_64
java-1.5.0-gcj-1.5.0.0             jre            jre-gcj
java-1.6.0                         jre-1.5.0      jre-openjdk
java-1.6.0-openjdk-1.6.0.0.x86_64  jre-1.5.0-gcj
java-1.6.0-openjdk.x86_64          jre-1.6.0

答案 1

谢谢,你是对的。

我需要安装 JDK 1.7/Java 7,然后在 netbeans install directory /etc/netbeans.conf 中编辑 netbeans 配置文件,以指向我安装新版本 Java 的位置:

    # Default location of JDK, can be overridden by using --jdkhome <dir>:
    netbeans_jdkhome="/users/rory/Documents/jdk1.7.0_02"

答案 2

将以下内容添加到您的pom下构建和插件,它应该针对1.6

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

推荐