在Eclipse中使用Maven編譯的時候報錯,錯誤信息如下:
xxx不兼容的類型 需要:xxx 找到: java.lang.Object
在pom.xml文件中為Maven指定用JDT來編譯(推薦)
修改pom.xml文件中maven-compiler-plugin的配置:
<build>
...
<plugins>
...
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>${java.version}</source>
<target>${java.version}</target>
<compilerId>eclipse</compilerId>
</configuration>
<dependencies>
<dependency>
<groupId>org.codehaus.plexus</groupId>
<artifactId>plexus-compiler-eclipse</artifactId>
<version>2.2</version>
</dependency>
</dependencies>
</plugin>
....
</plugins>
...
</build>
內容來源:http://www.cnblogs.com/liushuijinger/p/4380407.html

