运行 Maven2 构建时使用不同的 Java 源版本
我正在尝试使用通常的方式运行我的 Maven 构建:
mvn clean install
我收到一系列错误,内容如下:
annotations are not supported in -source 1.3
(use -source 5 or higher to enable annotations)
执行构建时如何使用 -source 5。我的 JAVA_HOME 指向 JDK 1.6。
I'm attempting to run my Maven build using the usual:
mvn clean install
I'm getting a whole series of errors that read:
annotations are not supported in -source 1.3
(use -source 5 or higher to enable annotations)
How do I use -source 5 when performing the build. My JAVA_HOME is pointing to JDK 1.6.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
将其添加到您的 pom.xml 中:
它也记录在 Maven FAQ。
有关更多信息,请查看编译器插件文档 。
Add this to your pom.xml:
It is also documented in the Maven FAQ.
For further information take a look at the Compiler Plugin documentation.
它在 pom.xml 中。你应该将
更改为
it's in the pom.xml. you should have
<source>1.3</source>
change it to