小编典典

运行Maven2构建时使用不同的Java源版本

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。


阅读 290

收藏
2020-11-26

共1个答案

小编典典

将此添加到您的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文档

2020-11-26