gpt4 book ai didi

java - source 1.3(使用 -source 5 或更高版本启用泛型)

转载 作者:塔克拉玛干 更新时间:2023-11-03 03:11:11 28 4
gpt4 key购买 nike

当我在我的 IDE 中编译项目时它工作正常但是当我在 bamboo 中编译时它给我以下错误。

我已经检查过我在任务中配置的 jdk 版本是 1.6,我还尝试从 pom 中的 maven 插件强制执行 jdk 版本,但效果不佳。你们中有人可能知道这里发生了什么?

[INFO] ------------------------------------------------------------------------
[ERROR] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Compilation failure

in -source 1.3
(use -source 5 or higher to enable generics)
List<String> matchedList = findMatchPhrase(keyword, expression);


[INFO] ------------------------------------------------------------------------
[INFO] For more information, run Maven with the -e switch

最佳答案

将以下属性添加到您的 pom.xml

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

关于java - source 1.3(使用 -source 5 或更高版本启用泛型),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14712384/

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