maven compile -source1.3 中不支持注释


-source 1.3 中不支持注释
(请使用 -source 5 或更高版本以启用注释)
        @Override


解决方式:
在项目的pom.xml文件中加入
<!-- 告诉maven支持java5 以上编译 -->
<plugin>
	<groupId>org.apache.maven.plugins</groupId>
	<artifactId>maven-compiler-plugin</artifactId>
	<configuration>
		<source>1.6</source>
		<target>1.6</target>
		<encoding>UTF-8</encoding>
	</configuration>
</plugin>


你可能感兴趣的:(apache,maven,xml)