Intellij Maven项目致命错误编译:无效标志:--release

Intellij Maven项目致命错误编译:无效标志:--release,第1张

Intellij Maven项目致命错误编译无效标志:--release

pom.xml
文件中,只需
<release>8</release>
maven-compiler-plugin
配置中删除标签 :

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


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5010839.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-14
下一篇 2022-11-14

发表评论

登录后才能评论

评论列表(0条)

保存