771.【开发工具】解决idea maven报错: 无效的目标发
2023-08-23 本文已影响0人
七镜
一、问题背景
我笔记本本地配置的JAVA_HOME对应的事jdk19,但我想将编译出来的jar对应jdk17,将idea中的一些列配置改成jdk17之后,一顿操作猛如虎,一看结果就是如下:
错误:无效的目标发行版:19
二、解决方案
修改maven对应的settings.xml。文件路径见下图:
修改内容如下图。
<profiles>
<!-- 配置 jdk版本 -->
<profile>
<id>development</id>
<activation>
<jdk>17</jdk>
<activeByDefault>true</activeByDefault>
</activation>
<properties>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<maven.compiler.compilerVersion>17</maven.compiler.compilerVersion>
</properties>
</profile>
</profiles>
完事!