无法执行目标org.apache.maven.plugins:maven-compiler-plugin:2.0.2:compile

时间:2015-03-03 08:05:24

标签: java maven maven-2 maven-compiler-plugin

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

[ERROR] /home/panwar/Downloads/Mr.LDA-master/src/main/java/cc/mrlda/polylda/TermReducer.java:[24,11] error: generics are not supported in -source 1.3

[ERROR] 
[ERROR] (use -source 5 or higher to enable generics)
[ERROR] /home/panwar/Downloads/Mr.LDA-master/src/main/java/cc/mrlda/TermReducer.java:[33,11] error: generics are not supported in -source 1.3 

我使用的是最新版本的java。

解决:问题出在maven身上。我使用的是旧版本(maven3.0.2)其他东西都是正确的。

3 个答案:

答案 0 :(得分:7)

您编译java 1.3的代码并使用java 1.5中引入的泛型。您必须更改为java 1.5或更高版本。

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

答案 1 :(得分:1)

您可能希望为编译器插件使用更高的JDK - (&#34; Java&#34 ;-)版本,如:

<plugin>
      <artifactId>maven-compiler-plugin</artifactId>
      <version>3.2</version>
      <configuration>
        <source>1.7</source>
        <target>1.7</target>
        <showWarnings>true</showWarnings>
        <showDeprecation>true</showDeprecation>
      </configuration>
    </plugin>

答案 2 :(得分:1)

您的Maven正在阅读Java版本1.6.0_65,其中pom.xml表示该版本为1.7。

尝试安装所需的版本。

如果已安装,请检查您的$JAVA_HOME环境变量,它应该包含Java JDK 7的路径。如果您找不到它,请修复您的环境变量。

也删除这些行:

 <fork>true</fork>
 <executable>${JAVA_1_7_HOME}/bin/javac</executable>
来自pom.xml