我正在使用 maven 编译一些 java 类。其中一个类有一个注释(@Override
),所以当我运行时mvn compile
,我得到错误:
annotations are not supported in -source 1.3
(use -source 5 or higher to enable annotations)
@Override
annotations are not supported in -source 1.3
(use -source 5 or higher to enable annotations)
@Override
虽然我系统中的 java 版本是 jdk 1.6.29,但我仍然无法理解这个错误。所以我有一种方法可以检查 maven 正在使用的 jdk 版本,也许可以更改它。或者,还有其他解决方案吗?谢谢。