gpt4 book ai didi

java - Azure DevOps Pipeline 中的 Maven 构建错误

转载 作者:行者123 更新时间:2023-11-30 05:46:45 25 4
gpt4 key购买 nike

我尝试在 Azure DevOps 中创建管道。我正在使用 Java 和 Maven,这是一个非常基本的项目,只有一个类/一个方法和测试。

我使用了 Azure DevOps 提供的 Maven 管道模板,但出现编译错误:

[ERROR] COMPILATION ERROR : 
[INFO] -------------------------------------------------------------
[ERROR] Source option 5 is no longer supported. Use 6 or later.
[ERROR] Target option 1.5 is no longer supported. Use 1.6 or later.
[INFO] 2 errors
[INFO] -------------------------------------------------------------

我不知道什么是目标。我查看了 pom.xml 文件和 azure-pipelines.yml 文件,但我没有看到任何关于 Source 的内容目标

它是什么?如何/在哪里可以将其更改为 61.6

此外,我是 Azure DevOps Pipeline 的新手,这是我使用 Maven 的第一个项目。

请告诉我,您是否需要查看我的 pom.xml 文件或我的 azure-pipelines.yml 文件以获取其他信息,但这些都是非常基本的,我没有更改任何内容(pom.xml 文件由 IntelliJ 自动生成)

非常感谢。

最佳答案

请尝试在 pom.xml 文件中添加以下脚本。

<properties> 
<maven.compiler.source>1.6</maven.compiler.source>
<maven.compiler.target>1.6</maven.compiler.target>
</properties>

更多信息请引用此issue .

关于java - Azure DevOps Pipeline 中的 Maven 构建错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54693472/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com