gpt4 book ai didi

java - IntelliJ 中的目标字节码始终回落至 1.5

转载 作者:行者123 更新时间:2023-12-02 09:21:30 24 4
gpt4 key购买 nike

我有一系列“示例”项目。顶层项目是空的,但它包含很多模块。

不幸的是,我经常被要求将目标字节码设置为 1.5。

从项目一开始我就这样做了很多次,但它仍然回落到 1.5。

如何永远坚持使用 1.8?

enter image description here

最佳答案

您可以在 pom 中使用它:

( https://maven.apache.org/plugins/maven-compiler-plugin/examples/set-compiler-source-and-target.html )

  <plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.6.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>

关于java - IntelliJ 中的目标字节码始终回落至 1.5,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34092605/

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