我正在尝试使用通常的方式运行我的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。
答案 0 :(得分:6)
将其添加到您的pom.xml:
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
</plugins>
</build>
Maven FAQ中也记录了它。
有关详细信息,请查看Compiler Plugin documentation。
答案 1 :(得分:0)
它在pom.xml中。您应该<source>1.3</source>
将其更改为
<source>1.6</source>