当前位置: 代码迷 >> java >> Azure DevOps Pipeline 中的 Maven 构建错误
  详细解决方案

Azure DevOps Pipeline 中的 Maven 构建错误

热度:131   发布时间:2023-07-31 13:36:52.0

我尝试在 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] -------------------------------------------------------------

我不知道什么是SourceTarget 我查看了pom.xml文件和azure-pipelines.yml文件,但我没有看到SourceTarget

它是什么以及如何/在哪里可以将其更改为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>

有关更多信息,请参阅此。

  相关解决方案