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

发布于 2024-10-20 00:46:53 字数 272 浏览 2 评论 0原文

我正在尝试使用通常的方式运行我的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

人间☆小暴躁 2024-10-27 00:46:53

将其添加到您的 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

有关更多信息,请查看编译器插件文档

Add this to your 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>

It is also documented in the Maven FAQ.

For further information take a look at the Compiler Plugin documentation.

久隐师 2024-10-27 00:46:53

它在 pom.xml 中。你应该将 1.3 更改为

<source>1.6</source> 

it's in the pom.xml. you should have <source>1.3</source> change it to

<source>1.6</source> 
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文