问题描述
我尝试在 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] -------------------------------------------------------------
我不知道什么是Source
和Target
。
我查看了pom.xml
文件和azure-pipelines.yml
文件,但我没有看到Source
和Target
。
它是什么以及如何/在哪里可以将其更改为6
和1.6
?
此外,我是 Azure DevOps Pipeline 的新手,这是我使用 Maven 的第一个项目。
告诉我您是否需要查看我的pom.xml
文件或我的azure-pipelines.yml
文件以获取附加信息,但有非常基本的内容,我什么都没做( pom.xml
文件是由 IntelliJ 自动生成的)
非常感谢。
1楼
请尝试在 pom.xml 文件中添加跟随脚本。
<properties>
<maven.compiler.source>1.6</maven.compiler.source>
<maven.compiler.target>1.6</maven.compiler.target>
</properties>
有关更多信息,请参阅此。