为什么maven在构建时失败而不是Eclipse?

时间:2015-01-26 09:31:04

标签: java eclipse maven

我在Eclipse中编写了这段代码(JDK 8.0.20)是编译JDK。

this.invokeMethod( (Set<MyClass<?>>) vari);

private void invokeMethod(Set<MyClass<?>> vari) throws  Exception{
         // TODO
}

在日食中一切都很好看。但是当我用maven构建它时,我有错误:

[ERROR] /Path/Test.java:[52,88] incompatible types: java.util.Set<capture#1 of ? extends x.y.z.MyClass<?>> cannot be converted to java.util.Set<x.y.z.MyClass<?>>

1 个答案:

答案 0 :(得分:1)

你可以在你的pom中添加这两行,并检查maven是否成功编译:

<properties>
  <maven.compiler.source>1.8</maven.compiler.source>
  <maven.compiler.target>1.8</maven.compiler.target>  
</properties>